- We inconsistently implement
has_guest_password_access_to
, so centralizing this will be helpful has_guest_password_access_to
belongs in authorization methods instead of an asset scope
2. We need to correct the expectation that we only made one query in the past, and we only need one query/scope in the future
-
Controllers used to front-load a lot of the queries that were necessary for the approvals checks
- granular permissions have always been central to approvals
- now we reference
collabable_by?
(likely cached in AR) in the assets service instead so we can keep controllers atassets = assets_service_for(brandfolder).get_assets
Original: https://github.com/brandfolder/boulder/blob/master/app/controllers/api/v3/assets_controller.rb
- note that this has the same amount of queries, and we never even used to scope to approved_only because of performance