##// END OF EJS Templates
Rails3: model: user: use ::Query instead of Query...
Rails3: model: user: use ::Query instead of Query Test fails on Rails 3.0. <pre> Error: test_destroy_should_update_wiki_contents(UserTest): NoMethodError: undefined method `delete_all' for ActiveRecord::AttributeMethods::Query:Module app/models/user.rb:602:in `remove_references_before_destroy' test/unit/user_test.rb:298:in `test_destroy_should_update_wiki_contents' </pre> git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8140 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7172:da8a2ea4bca7
r8020:312ffe43c7ef
Show More
index.api.rsb
14 lines | 512 B | text/plain | TextLexer
Jean-Philippe Lang
Refactor and add tests for News #index API (#7072)....
r4391 api.array :news, api_meta(:total_count => @news_count, :offset => @offset, :limit => @limit) do
@newss.each do |news|
api.news do
api.id news.id
api.project(:id => news.project_id, :name => news.project.name) unless news.project.nil?
api.author(:id => news.author_id, :name => news.author.name) unless news.author.nil?
Toshi MARUYAMA
remove trailing white-spaces from app/views/news/index.api.rsb...
r7137
Toshi MARUYAMA
replace tabs to spaces at app/views/news/index.api.rsb...
r7172 api.title news.title
api.summary news.summary
api.description news.description
Jean-Philippe Lang
Refactor and add tests for News #index API (#7072)....
r4391 api.created_on news.created_on
end
end
end