Sha256: b8a39dc5d3b66a65d8172b28a0946350e4dd6ca1b7c8a52e9a6e9eb1ae512ea4
Contents?: true
Size: 383 Bytes
Versions: 43
Compression:
Stored size: 383 Bytes
Contents
class UserImportFilePolicy < ApplicationPolicy def index? true if user.try(:has_role?, 'Librarian') end def show? true if user.try(:has_role?, 'Librarian') end def create? true if user.try(:has_role?, 'Librarian') end def update? true if user.try(:has_role?, 'Librarian') end def destroy? true if user.try(:has_role?, 'Librarian') end end
Version data entries
43 entries across 41 versions & 3 rubygems