courseplatform/app/controllers/admin/users_controller.rb

16 lines
182 B
Ruby

class Admin::UsersController < ApplicationController
def index; end
def show; end
def new; end
def create; end
def edit; end
def update; end
def destroy; end
end