aboutsummaryrefslogtreecommitdiffstats
path: root/app/policies/workbench_policy.rb
blob: 7b925e91a19ef7e0551853162359a5ad40aed154 (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?
    true
  end
end