Sha256: 375fdeaea6e5e5634c212da1b33dcc513c0a5645168fdf868890168cadd095da
Contents?: true
Size: 257 Bytes
Versions: 87
Compression:
Stored size: 257 Bytes
Contents
module Pageflow module Admin class AdminOnlyTabPolicy attr_reader :user, :tab def initialize(user, tab) @user = user @tab = tab end def see? !tab.admin_only? || user.admin? end end end end
Version data entries
87 entries across 87 versions & 1 rubygems