Sha256: 883bdb810f9c0bb3635616a274cfa89c1016383a16443562de7b38838ec2c994
Contents?: true
Size: 365 Bytes
Versions: 10
Compression:
Stored size: 365 Bytes
Contents
class NiiTypePolicy < ApplicationPolicy def index? true end def show? true end def create? true if user.try(:has_role?, 'Administrator') end def update? true if user.try(:has_role?, 'Administrator') end def destroy? if user.try(:has_role?, 'Administrator') true unless record.manifestations.exists? end end end
Version data entries
10 entries across 10 versions & 1 rubygems