Module: Arrow::AccessControls::ClassMethods

Defined in:
lib/arrow/appletmixins.rb

Overview

Methods to add to including classes

Instance Method Summary collapse

Instance Method Details

#unauthenticated_actions(*actions) ⇒ Object Also known as: unauthenticated_action

Allow declaration of actions which don’t require authentication – all other methods are authenticated by default



170
171
172
173
# File 'lib/arrow/appletmixins.rb', line 170

def unauthenticated_actions( *actions )
	@unauthenticated_actions.push( *actions )
	return @unauthenticated_actions
end