mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
14 lines
356 B
Ruby
14 lines
356 B
Ruby
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class KarmaController < ApplicationController
|
|
before_action :authentication_check
|
|
|
|
def index
|
|
render json: {
|
|
levels: Setting.get('karma_levels'),
|
|
user: Karma::User.by_user(current_user),
|
|
logs: Karma::ActivityLog.latest(current_user, 20),
|
|
}
|
|
end
|
|
|
|
end
|