skill-assessment-app/app/controllers/admin/profile_controller.rb

17 lines
208 B
Ruby
Raw Normal View History

2016-08-24 10:43:33 -05:00
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