15 lines
356 B
Ruby
15 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
|