Sha256: 0be4bd187b1809a291a2224f01fda97fa7b7ceeefda40234658b0c9c3b3eb117

Contents?: true

Size: 720 Bytes

Versions: 1

Compression:

Stored size: 720 Bytes

Contents

===============================================================================

Some setup you must do manually:

  1. add a filter to your ApplicationController

		before_filter :access_authorized?
		
	 or add the filter to select controllers
	
	 if controllers follows particular patterns like the Presenter Pattern
	 add the table(s) as arguments to the filter
	
		before_filter :access_authorized? :posts, :comments

  2. add a default_scope to your models

		default_scope :instances_authorized

  3. build access control structures using the Role, Permission and GroupUser views,
 	 like

		/roles
		/permissions
		/group_users
		

===============================================================================

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bobby-0.0.4 lib/generators/bobby/install/templates/README