diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2017-04-19 19:14:40 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2017-04-24 16:17:52 -0300 |
commit | f35573f12eb579b31b014fa99509c694021c33c7 (patch) | |
tree | 6f615c24db9f2c975f4972b1f3a93f4fbab0938b /lib/github/representation/pull_request.rb | |
parent | a32adb82dc5b27069835219a5189f497686b8b04 (diff) | |
download | gitlab-ce-f35573f12eb579b31b014fa99509c694021c33c7.tar.gz |
Extract common attributes to Github::Representation::Base
Diffstat (limited to 'lib/github/representation/pull_request.rb')
-rw-r--r-- | lib/github/representation/pull_request.rb | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/github/representation/pull_request.rb b/lib/github/representation/pull_request.rb index 85f4e1bdac3..b33561565bf 100644 --- a/lib/github/representation/pull_request.rb +++ b/lib/github/representation/pull_request.rb @@ -71,18 +71,6 @@ module Github 'opened' end - def url - raw['url'] - end - - def created_at - raw['created_at'] - end - - def updated_at - raw['updated_at'] - end - def assigned? raw['assignee'].present? end |