blob: 30c23cc7a674b16c12204129edc9601182bc2347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
module API
module Entities
class UserActivity < Grape::Entity
expose :username
expose :last_activity_on
expose :last_activity_on, as: :last_activity_at # Back-compat
end
end
end
|