Sha256: ff940c78d946898f805a4d900306ea9755ca63735ec120e0541adf04a3980ea8
Contents?: true
Size: 336 Bytes
Versions: 29
Compression:
Stored size: 336 Bytes
Contents
class CheckinPolicy < ApplicationPolicy def index? user.try(:has_role?, 'Librarian') end def show? user.try(:has_role?, 'Librarian') end def create? user.try(:has_role?, 'Librarian') end def update? user.try(:has_role?, 'Librarian') end def destroy? user.try(:has_role?, 'Librarian') end end
Version data entries
29 entries across 29 versions & 1 rubygems