mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 20:41:01 +00:00
dec054eed8
removed compmod council group from staff page fixed some errors with missing database entries
28 lines
644 B
Ruby
28 lines
644 B
Ruby
class ShoutmsgsController < ApplicationController
|
|
respond_to :html, :js
|
|
|
|
def show
|
|
if params[:id2]
|
|
@shoutmsgs = Shoutmsg.recent.of_object(params[:id], params[:id2]).reverse
|
|
else
|
|
@shoutmsgs = Shoutmsg.recent.box
|
|
end
|
|
end
|
|
|
|
def create
|
|
@shoutmsg = Shoutmsg.new params[:shoutmsg]
|
|
@shoutmsg.user = cuser
|
|
raise AccessError unless @shoutmsg.can_create? cuser
|
|
|
|
unless @shoutmsg.save
|
|
flash[:error] = t(:invalid_message)
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@shoutmsg = Shoutmsg.find params[:id]
|
|
raise AccessError unless @shoutmsg.can_destroy? cuser
|
|
@shoutmsg.destroy
|
|
redirect_to_back
|
|
end
|
|
end
|