announcement-test/app/controllers/announcements_controller.rb

47 lines
1.1 KiB
Ruby
Raw Normal View History

2014-04-01 07:12:43 +00:00
class AnnouncementsController < ApplicationController
def index
2014-05-01 09:28:20 +00:00
announcements = Bulletin.order_by(:created_at=>'desc').filter_by_categories
anns = announcements.collect do |a|
{
"title" => a.title,
"subtitle" => a.subtitle,
"link_to_show" => OrbitHelper.url_to_show(a.to_param),
"more" => "More",
}
2014-04-01 07:12:43 +00:00
end
2014-04-02 06:44:36 +00:00
{
"data" => anns
}
2014-04-01 07:12:43 +00:00
end
def widget
2014-05-01 08:41:00 +00:00
announcements = Bulletin.order_by(:created_at=>'desc').filter_by_categories
2014-04-02 06:44:36 +00:00
anns = announcements.collect do |a|
2014-04-01 07:12:43 +00:00
{
"title" => a.title,
2014-05-01 09:28:20 +00:00
"subtitle" => a.subtitle,
2014-04-02 06:44:36 +00:00
"link_to_show" => OrbitHelper.url_to_show(a.to_param),
2014-04-01 07:12:43 +00:00
"more" => "More",
}
end
2014-04-02 06:44:36 +00:00
{
"extras" => {"link_to_index" => "index","name" => "Harry"},
"data" => anns
}
2014-04-01 07:12:43 +00:00
end
def show
params = OrbitHelper.params
2014-05-01 08:41:00 +00:00
announcement = Bulletin.find_by(:uid=>params[:uid])
2014-04-01 07:12:43 +00:00
{
"title" => announcement.title,
2014-05-01 09:28:20 +00:00
"image" => (announcement.image.blank? ? "" : announcement.image.url),
2014-05-01 08:41:00 +00:00
"body" => announcement.text
2014-04-01 07:12:43 +00:00
}
2014-04-02 06:44:36 +00:00
end
2014-04-01 07:12:43 +00:00
end