mirror of
https://github.com/discourse/discourse.git
synced 2025-05-03 06:24:32 +08:00
7 lines
160 B
Ruby
7 lines
160 B
Ruby
class BadgesController < ApplicationController
|
|
def index
|
|
badges = Badge.all.to_a
|
|
render_serialized(badges, BadgeSerializer, root: "badges")
|
|
end
|
|
end
|