comparison vendor/plugins/redmine_bibliography/init.rb @ 483:cc267eb99115 feature_36

removed unnecessary rjs file; extending the User Model to handle Users with no Author.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Thu, 07 Jul 2011 18:20:31 +0100
parents a7dc708d48a1
children 2df99e8d191e
comparison
equal deleted inserted replaced
482:ea8b8768b4a0 483:cc267eb99115
10 10
11 unless Project.included_modules.include? Bibliography::ProjectPublicationsPatch 11 unless Project.included_modules.include? Bibliography::ProjectPublicationsPatch
12 Project.send(:include, Bibliography::ProjectPublicationsPatch) 12 Project.send(:include, Bibliography::ProjectPublicationsPatch)
13 end 13 end
14 14
15 unless Project.included_modules.include? Bibliography::UserAuthorPatch 15 unless User.included_modules.include? Bibliography::UserAuthorPatch
16 Project.send(:include, Bibliography::UserAuthorPatch) 16 User.send(:include, Bibliography::UserAuthorPatch)
17 end 17 end
18 18
19 end 19 end
20 20
21 21