Files
fizzy/app/controllers/collections/involvements_controller.rb
T
2025-04-09 14:50:58 +02:00

8 lines
201 B
Ruby

class Collections::InvolvementsController < ApplicationController
include CollectionScoped
def update
@collection.access_for(Current.user).update!(involvement: params[:involvement])
end
end