trabajo-afectivo/app/controllers/karma_controller.rb

15 lines
356 B
Ruby
Raw Normal View History

2016-07-10 22:47:21 +00:00
# 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