Mercurial > hg > soundsoftware-site
annotate .svn/pristine/6d/6d6109d0a05e56194e4d35c31ae6b55d51c938dc.svn-base @ 1274:5ea1a213c7a5 redmine-2.2-integration
Removed Ajax calls taht are no longer working in Rails 3 and started migrating them; added a new javascript file - bibliography.js - to hold the new jquery js code; added the new show_bibtex_fields.js.erb file to replace the RJS code that was in the controller.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 09 May 2013 18:44:59 +0100 |
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 |