summaryrefslogtreecommitdiff
path: root/lib/bitbucket/representation/user.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bitbucket/representation/user.rb')
-rw-r--r--lib/bitbucket/representation/user.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/bitbucket/representation/user.rb b/lib/bitbucket/representation/user.rb
new file mode 100644
index 00000000000..ba6b7667b49
--- /dev/null
+++ b/lib/bitbucket/representation/user.rb
@@ -0,0 +1,9 @@
+module Bitbucket
+ module Representation
+ class User < Representation::Base
+ def username
+ raw['username']
+ end
+ end
+ end
+end