Merge branch 'new_rss'
Conflicts: vendor/built_in_modules/announcement/app/models/bulletin.rb
This commit is contained in:
commit
080974b563
|
@ -16,7 +16,6 @@ class PagesController < ApplicationController
|
|||
|
||||
def show
|
||||
#begin
|
||||
|
||||
@item = Item.first(:conditions => {:path => params[:page_name]})
|
||||
if @item && @item.is_published #&& (@item.enabled_for.nil? ? true : @item.enabled_for.include?(I18n.locale.to_s))
|
||||
impressionist(@item)
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
Resque::Server.use(Rack::Auth::Basic) do |user, password|
|
||||
password == "SD-7506D"
|
||||
end
|
|
@ -148,7 +148,7 @@ zh_tw:
|
|||
create_success_snippet: 片段已成功新增。
|
||||
create_success_user: 用戶已成功新增。。
|
||||
dashboard: 儀表板
|
||||
data: 資料數據
|
||||
data: 選擇檔案
|
||||
delete_language: 刪除語言
|
||||
description: 描述
|
||||
design: 版型管理
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
module Panel::Announcement::BackEnd::BulletinsHelper
|
||||
def show_form_status_field(bulletin)
|
||||
by_bulletin = (!bulletin.is_expired? and bulletin.is_pending?)
|
||||
#by_bulletin = (!bulletin.is_expired? and bulletin.is_pending?)
|
||||
by_user = ((bulletin.bulletin_category.authed_users('fact_check').include?(current_user) rescue nil) or is_manager? or is_admin?)
|
||||
by_bulletin and by_user
|
||||
by_user
|
||||
end
|
||||
|
||||
def show_approval_link(bulletin)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<% @bulletins.each do |bulletin| %>
|
||||
<li>
|
||||
<%= link_to bulletin.title, panel_announcement_front_end_bulletin_path(bulletin, :category_id => bulletin.bulletin_category_id) %>
|
||||
<%= link_to bulletin.title, panel_announcement_front_end_bulletin_path(bulletin, :category_id => bulletin.bulletin_category_id ,:tag_id=>bulletin.tags.first.id ) %>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
module Panel::News::BackEnd::NewsBulletinsHelper
|
||||
def news_show_form_status_field(news_bulletin)
|
||||
by_news_bulletin = (!news_bulletin.is_expired? and news_bulletin.is_pending?)
|
||||
#by_news_bulletin = (!news_bulletin.is_expired? and news_bulletin.is_pending?)
|
||||
by_user = ((news_bulletin.news_bulletin_category.authed_users('fact_check').include?(current_user) rescue nil) or is_manager? or is_admin?)
|
||||
by_news_bulletin and by_user
|
||||
by_user
|
||||
end
|
||||
|
||||
def news_show_approval_link(news_bulletin)
|
||||
|
|
Reference in New Issue