Users cannot change their own username after 3 days since registering. Site setting username_change_period allows you to change the number of days.

This commit is contained in:
Neil Lalonde
2013-08-12 14:54:52 -04:00
parent ffcf3f7e7d
commit b36c6d7b78
8 changed files with 61 additions and 4 deletions

View File

@ -278,6 +278,10 @@ class Guardian
!topic.archived && (is_staff? || is_my_own?(topic))
end
def can_edit_username?(user)
is_staff? || (is_me?(user) && user.created_at > SiteSetting.username_change_period.days.ago)
end
# Deleting Methods
def can_delete_post?(post)
# Can't delete the first post