Sha256: 226a5f1cf6c79eaf14e75b6750e5ff9f0277749c70e8aa0a08e73245277ffead
Contents?: true
Size: 329 Bytes
Versions: 29
Compression:
Stored size: 329 Bytes
Contents
class UseRestrictionPolicy < ApplicationPolicy def index? true if user.try(:has_role?, 'Librarian') end def show? true if user.try(:has_role?, 'Librarian') end def create? false end def update? if user.try(:has_role?, 'Administrator') true end end def destroy? false end end
Version data entries
29 entries across 29 versions & 1 rubygems