1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-09 10:43:07 +00:00

Added missing :permission option in sample plugin.

git-svn-id: http://svn.redmine.org/redmine/trunk@14031 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2015-02-18 21:11:37 +00:00
parent dbcdc3415d
commit 2277f61046

View File

@ -7,5 +7,6 @@ class Meeting < ActiveRecord::Base
:url => Proc.new {|o| {:controller => 'meetings', :action => 'show', :id => o.id}}
acts_as_activity_provider :timestamp => 'scheduled_on',
:scope => includes(:project)
:scope => includes(:project),
:permission => nil
end