enable write-only forums

when the role-write is lower than the role-read, a forum is considered write-only
for anyone who can write, but not read, they can create posts, but they can only see and reply to their own posts.

users who can read are able to see and reply to all posts in the forum.
This commit is contained in:
jomo
2015-01-17 19:40:57 +01:00
parent a6c062bde7
commit 55f92fe45a
6 changed files with 39 additions and 17 deletions

View File

@@ -2,12 +2,12 @@ class ForumsController < ApplicationController
before_filter :check_permission, only: [:show, :edit, :update, :destroy]
def index
@groups = Forumgroup.select {|g| g.can_read?(current_user) }
@groups = Forumgroup.select {|g| g.can_view?(current_user) }
@groups.sort_by!{ |g| g.position || 0 }
end
def show
@threads = @forum.forumthreads.to_a
@threads = @forum.forumthreads.select {|f| f.can_read?(current_user) }.to_a
@threads.sort_by! do |t|
# sticky goes first, then sort by last activity (new replies)
[t.sticky ? 0 : 1, -(t.replies.last.try(:created_at) || t.created_at).to_i]
@@ -78,7 +78,7 @@ class ForumsController < ApplicationController
def check_permission
@forum = Forum.find(params[:id])
unless @forum.can_read?(current_user)
unless @forum.can_view?(current_user)
flash[:alert] = "You are not allowed to view this forum"
redirect_to forums_path
end