summaryrefslogtreecommitdiff
path: root/lib/bitbucket_server/representation/user.rb
blob: 174f3a55f2cc50a962db6625ce8a5070b8b64d69 (plain)
1
2
3
4
5
6
7
8
9
module BitbucketServer
  module Representation
    class User < Representation::Base
      def username
        raw['username']
      end
    end
  end
end