13 lines
168 B
Ruby
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
|