2024-02-25 12:15:55 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-24 17:03:42 -04:00
|
|
|
class AdminDashboard
|
|
|
|
def tag_aliases
|
2019-11-09 13:53:02 -05:00
|
|
|
TagAlias.where(status: "pending").order("id desc").limit(100)
|
2014-09-24 17:03:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def tag_implications
|
2019-11-09 13:53:02 -05:00
|
|
|
TagImplication.where(status: "pending").order("id desc").limit(100)
|
2014-09-24 17:03:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update_requests
|
|
|
|
BulkUpdateRequest.where(status: "pending").order("id desc")
|
|
|
|
end
|
|
|
|
|
|
|
|
def forum_topics
|
2017-02-05 02:31:21 -05:00
|
|
|
ForumTopic.search(category_id: 1).order("id desc").limit(20)
|
2014-09-24 17:03:42 -04:00
|
|
|
end
|
|
|
|
end
|