Merge branch 'master' into glitch-soc/merge-upstream

Conflicts:
- app/views/admin/settings/edit.html.haml:
  Conflict due to how the theming settings change.
This commit is contained in:
Thibaut Girka
2019-03-14 17:14:05 +01:00
103 changed files with 523 additions and 434 deletions

View File

@@ -21,6 +21,14 @@ class UserPolicy < ApplicationPolicy
staff?
end
def approve?
staff? && !record.approved?
end
def reject?
staff? && !record.approved?
end
def disable?
staff? && !record.admin?
end
@@ -36,7 +44,7 @@ class UserPolicy < ApplicationPolicy
private
def promoteable?
!record.staff? || !record.admin?
record.approved? && (!record.staff? || !record.admin?)
end
def demoteable?