1 # frozen_string_literal: true
4 include CanCan::Ability
7 can [:create, :comment, :close, :reopen], Note if capability?(token, :allow_write_notes)
8 can [:api_read, :api_data], Trace if capability?(token, :allow_read_gpx)
9 can [:api_create, :api_update, :api_delete], Trace if capability?(token, :allow_write_gpx)
10 can [:api_details], User if capability?(token, :allow_read_prefs)
11 can [:api_gpx_files], User if capability?(token, :allow_read_gpx)
12 can [:read, :read_one], UserPreference if capability?(token, :allow_read_prefs)
13 can [:update, :update_one, :delete_one], UserPreference if capability?(token, :allow_write_prefs)
15 if token&.user&.terms_agreed? || !REQUIRE_TERMS_AGREED
16 can [:create, :update, :upload, :close, :subscribe, :unsubscribe, :expand_bbox], Changeset if capability?(token, :allow_write_api)
17 can :create, ChangesetComment if capability?(token, :allow_write_api)
20 if token&.user&.moderator?
21 can [:destroy, :restore], ChangesetComment if capability?(token, :allow_write_api)
22 can :destroy, Note if capability?(token, :allow_write_notes)
28 def capability?(token, cap)
29 token&.read_attribute(cap)