- can [:create, :edit, :comment, :subscribe, :unsubscribe], DiaryEntry
- can [:new, :create], Report
- can [:read, :read_one, :update, :update_one, :delete_one], UserPreference
-
- if user.moderator?
- can [:index, :show, :resolve, :ignore, :reopen], Issue
- can :create, IssueComment
- can [:new, :edit, :create, :update, :revoke], UserBlock
- end
+ can [:show], :deletion
+
+ if Settings.status != "database_offline"
+ can [:subscribe, :unsubscribe], Changeset
+ can [:index, :create, :show, :update, :destroy], :oauth2_application
+ can [:index, :destroy], :oauth2_authorized_application
+ can [:show, :create, :destroy], :oauth2_authorization
+ can [:update, :destroy], :account
+ can [:show], :dashboard
+ can [:create, :subscribe, :unsubscribe], DiaryEntry
+ can :update, DiaryEntry, :user => user
+ can [:create], DiaryComment
+ can [:make_friend, :remove_friend], Friendship
+ can [:create, :reply, :show, :inbox, :outbox, :muted, :mark, :unmute, :destroy], Message
+ can [:close, :reopen], Note
+ can [:show, :update], :preference
+ can :update, :profile
+ can :create, Report
+ can [:mine, :create, :update, :destroy], Trace
+ can [:account, :go_public], User
+ can [:index, :create, :destroy], UserMute
+
+ if user.moderator?
+ can [:hide, :unhide], [DiaryEntry, DiaryComment]
+ can [:index, :show, :resolve, :ignore, :reopen], Issue
+ can :create, IssueComment
+ can [:create, :update, :destroy], Redaction
+ can [:create, :revoke_all], UserBlock
+ can :update, UserBlock, :creator => user
+ can :update, UserBlock, :revoker => user
+ can :update, UserBlock, :active? => true
+ end