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

13 lines
132 B
Ruby
Raw Normal View History

2016-08-17 17:49:09 -05:00
module Admin
class AuthController < AdminController
def login
end
def auth
end
def logout
end
end
end