annotate .svn/pristine/6d/6d6109d0a05e56194e4d35c31ae6b55d51c938dc.svn-base @ 1087:74407a04925c issue_540

* (publication.rb) - fixed the acts_as_activity query (see diff to previous commit) - not returning duplicate results any longer; added the visible scope to the publication model; * (init.rb) - created a new public permission - view_publication.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 23 Nov 2012 17:25:27 +0000
parents cbb26bc654de
children
rev   line source
Chris@909 1 class AddViewWikiEditsPermission < ActiveRecord::Migration
Chris@909 2 def self.up
Chris@909 3 Role.find(:all).each do |r|
Chris@909 4 r.add_permission!(:view_wiki_edits) if r.has_permission?(:view_wiki_pages)
Chris@909 5 end
Chris@909 6 end
Chris@909 7
Chris@909 8 def self.down
Chris@909 9 Role.find(:all).each do |r|
Chris@909 10 r.remove_permission!(:view_wiki_edits)
Chris@909 11 end
Chris@909 12 end
Chris@909 13 end