mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 20:00:49 +08:00
9 lines
227 B
Ruby
9 lines
227 B
Ruby
class Helps::FaqsController < ApplicationController
|
|
skip_before_action :check_sign, :user_setup
|
|
|
|
def index
|
|
faqs = Faq.select_without_id.order(updated_at: :desc)
|
|
render json: faqs.as_json(:except => [:id])
|
|
end
|
|
end
|