aboutsummaryrefslogtreecommitdiffstats
path: root/app/policies/workbench_policy.rb
blob: 9f2279c387f06bdd2e22e6954206a3cb555e3586 (plain)
1
2
3
4
5
6
7
8
9
10
11
class WorkbenchPolicy < ApplicationPolicy
  class Scope < Scope
    def resolve
      scope
    end
  end

  def update?
    user.has_permission?('workbenches.update')
  end
end