Files
plottservice/app/controllers/profiles_controller.rb

13 lines
168 B
Ruby

class ProfilesController < ApplicationController
skip_verify_authorized only: [ :show, :edit, :destroy ]
def show
end
def edit
end
def destroy
end
end