mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
db200226b8
Conflicts: app/javascript/mastodon/initial_state.js db/schema.rb Upstream added a new field to initial_state. Not too sure about what happened with db/schema.rb though…
53 lines
894 B
Ruby
53 lines
894 B
Ruby
# frozen_string_literal: true
|
|
|
|
class InvitesController < ApplicationController
|
|
include Authorization
|
|
|
|
layout 'admin'
|
|
|
|
before_action :authenticate_user!
|
|
before_action :set_pack
|
|
|
|
def index
|
|
authorize :invite, :create?
|
|
|
|
@invites = invites
|
|
@invite = Invite.new
|
|
end
|
|
|
|
def create
|
|
authorize :invite, :create?
|
|
|
|
@invite = Invite.new(resource_params)
|
|
@invite.user = current_user
|
|
|
|
if @invite.save
|
|
redirect_to invites_path
|
|
else
|
|
@invites = invites
|
|
render :index
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@invite = invites.find(params[:id])
|
|
authorize @invite, :destroy?
|
|
@invite.expire!
|
|
redirect_to invites_path
|
|
end
|
|
|
|
private
|
|
|
|
def set_pack
|
|
use_pack 'settings'
|
|
end
|
|
|
|
def invites
|
|
Invite.where(user: current_user)
|
|
end
|
|
|
|
def resource_params
|
|
params.require(:invite).permit(:max_uses, :expires_in, :autofollow)
|
|
end
|
|
end
|