canvas-lms/vendor/plugins/adheres_to_policy
JT Olds 77b31810c6 hide wiki pages marked hidden from students
closes #1865

Change-Id: I582d566fd83575e70502dd682ca0347a436e194c2
Reviewed-on: https://gerrit.instructure.com/2422
Tested-by: Hudson <hudson@instructure.com>
Reviewed-by: JT Olds <jt@instructure.com>
2011-02-24 10:12:41 -07:00
..
lib Initial commit. 2011-01-31 18:57:29 -07:00
spec Initial commit. 2011-01-31 18:57:29 -07:00
README hide wiki pages marked hidden from students 2011-02-24 10:12:41 -07:00
Rakefile Initial commit. 2011-01-31 18:57:29 -07:00
init.rb Initial commit. 2011-01-31 18:57:29 -07:00

README

AdheresToPolicy
===============

This allows us to do something like:

class Account < ActiveRecord::Base
  adheres_to_policy
  
  set_policy do
    given { |u| self.user == u }
    set { can :read and can :write }
  end
end

u = User.find(:first)
a = Account.find(:first)
a.check_policy(u)

License
=======

Copyright (C) 2011 Instructure, Inc.

This file is part of Canvas.

Canvas is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, version 3 of the License.

Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
details.

You should have received a copy of the GNU Affero General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.