Sha256: 77872c9c6950ca1b03c108aa19c4b5daa4446033c916d31bf6a2ebe4aa60167f
Contents?: true
Size: 393 Bytes
Versions: 40
Compression:
Stored size: 393 Bytes
Contents
class SearchEnginePolicy < 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?, 'Administrator') end def update? true if user.try(:has_role?, 'Administrator') end def destroy? true if user.try(:has_role?, 'Administrator') end end
Version data entries
40 entries across 38 versions & 2 rubygems