profile scaffold

This commit is contained in:
Mark Moser
2016-08-24 10:43:33 -05:00
parent 2709842d4d
commit 35f33e8215
6 changed files with 59 additions and 2 deletions

View File

@ -0,0 +1,16 @@
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

View File

@ -0,0 +1,2 @@
<h1>Admin::Profile#edit</h1>
<p>Find me in app/views/admin/profile/edit.html.erb</p>

View File

@ -0,0 +1,2 @@
<h1>Admin::Profile#lost_password</h1>
<p>Find me in app/views/admin/profile/lost_password.html.erb</p>

View File

@ -0,0 +1,2 @@
<h1>Admin::Profile#view</h1>
<p>Find me in app/views/admin/profile/view.html.erb</p>