17 lines
208 B
Ruby
17 lines
208 B
Ruby
|
module Admin
|
||
|
class ProfileController < ApplicationController
|
||
|
def view
|
||
|
end
|
||
|
|
||
|
def edit
|
||
|
end
|
||
|
|
||
|
def update
|
||
|
redirect_to admin_profile_path
|
||
|
end
|
||
|
|
||
|
def lost_password
|
||
|
end
|
||
|
end
|
||
|
end
|