mirror of
https://git.asonix.dog/ceralor/mastodon.git
synced 2025-10-12 21:34:27 +00:00
18 lines
371 B
Ruby
18 lines
371 B
Ruby
class StatusesController < ApplicationController
|
|
layout 'dashboard'
|
|
|
|
before_action :authenticate_user!
|
|
|
|
def create
|
|
PostStatusService.new.(current_user.account, status_params[:text])
|
|
redirect_to root_path
|
|
rescue ActiveRecord::RecordInvalid
|
|
redirect_to root_path
|
|
end
|
|
|
|
private
|
|
|
|
def status_params
|
|
params.require(:status).permit(:text)
|
|
end
|
|
end
|