You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class Admins::AboutsController < Admins::BaseController
- def edit
- current_doc
- end
-
- def update
- current_doc.update!(about_us: params[:about_us])
-
- flash[:success] = '保存成功'
- redirect_to edit_admins_about_path
- end
-
- private
-
- def current_doc
- @doc ||= Help.first || Help.create
- end
- end
|