Sha256: 05e877c173d2597c6f9742da1458b7382510944abeaa3bcf20a4c5535d0ddcd0
Contents?: true
Size: 471 Bytes
Versions: 11
Compression:
Stored size: 471 Bytes
Contents
# frozen_string_literal: true module Decidim module Gamification class BadgesController < Decidim::ApplicationController include HasSpecificBreadcrumb def index @badges = Decidim::Gamification.badges.sort_by(&:name) end private def breadcrumb_item { label: t("decidim.gamification.badges.index.title"), active: true, url: gamification_badges_path } end end end end
Version data entries
11 entries across 11 versions & 1 rubygems