77 lines
2.2 KiB
Ruby
77 lines
2.2 KiB
Ruby
class SocialLinksController < ApplicationController
|
|
before_action :set_social_link, only: %i[ show edit update destroy ]
|
|
|
|
# GET /social_links or /social_links.json
|
|
def index
|
|
@social_links = policy_scope SocialLink.all
|
|
authorize @social_links
|
|
end
|
|
|
|
# GET /social_links/1 or /social_links/1.json
|
|
def show
|
|
authorize @social_link
|
|
end
|
|
|
|
# GET /social_links/new
|
|
def new
|
|
@social_link = SocialLink.new
|
|
@social_link.profile_id = params[:profile_id] if params[:profile_id]
|
|
authorize @social_link
|
|
end
|
|
|
|
# GET /social_links/1/edit
|
|
def edit
|
|
authorize @social_link
|
|
end
|
|
|
|
# POST /social_links or /social_links.json
|
|
def create
|
|
authorize @social_link = SocialLink.new(social_link_params)
|
|
|
|
respond_to do |format|
|
|
if @social_link.save
|
|
format.html { redirect_to @social_link.profile, notice: "Social link was successfully created." }
|
|
format.json { render :show, status: :created, location: @social_link }
|
|
else
|
|
format.html { render :new, status: :unprocessable_entity }
|
|
format.json { render json: @social_link.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# PATCH/PUT /social_links/1 or /social_links/1.json
|
|
def update
|
|
authorize @social_link
|
|
respond_to do |format|
|
|
if @social_link.update(social_link_params)
|
|
format.html { redirect_to @social_link.profile, notice: "Social link was successfully updated." }
|
|
format.json { render :show, status: :ok, location: @social_link }
|
|
else
|
|
format.html { render :edit, status: :unprocessable_entity }
|
|
format.json { render json: @social_link.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# DELETE /social_links/1 or /social_links/1.json
|
|
def destroy
|
|
@social_link.destroy
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to social_links_url, notice: "Social link was successfully destroyed." }
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
|
|
private
|
|
# Use callbacks to share common setup or constraints between actions.
|
|
def set_social_link
|
|
@social_link = SocialLink.find(params[:id])
|
|
end
|
|
|
|
# Only allow a list of trusted parameters through.
|
|
def social_link_params
|
|
params.require(:social_link).permit(:profile_id, :url)
|
|
end
|
|
end
|