You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
216 B
8 lines
216 B
5 years ago
|
class Weapps::CoursesController < Weapps::BaseController
|
||
|
before_action :require_wechat_login!
|
||
|
|
||
|
def create
|
||
|
return render_error("只有老师身份才能创建课堂") unless current_user.is_teacher?
|
||
|
|
||
|
end
|
||
|
end
|