2016-03-21 18:26:47 +01:00
|
|
|
class StatusesController < ApplicationController
|
|
|
|
layout 'dashboard'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
|
|
|
def create
|
2016-03-25 02:13:30 +01:00
|
|
|
PostStatusService.new.(current_user.account, status_params[:text])
|
2016-03-21 18:26:47 +01:00
|
|
|
redirect_to root_path
|
|
|
|
rescue ActiveRecord::RecordInvalid
|
|
|
|
redirect_to root_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def status_params
|
|
|
|
params.require(:status).permit(:text)
|
|
|
|
end
|
|
|
|
end
|