diff options
author | Rémy Coutable <remy@rymai.me> | 2017-10-05 10:57:34 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-10-05 11:05:45 +0200 |
commit | 7833d3fb29592daa774124dedca692b921e1545c (patch) | |
tree | 76b40df374e2bf6567861be4e79bf8cb64801b56 /lib/github/representation/issue.rb | |
parent | f50b95b00790794184243062e3cbc9095b8b839d (diff) | |
download | gitlab-ce-7833d3fb29592daa774124dedca692b921e1545c.tar.gz |
Improve & simplify GitHub's representation classes
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'lib/github/representation/issue.rb')
-rw-r--r-- | lib/github/representation/issue.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/github/representation/issue.rb b/lib/github/representation/issue.rb index c0a6d349e33..0e595301c58 100644 --- a/lib/github/representation/issue.rb +++ b/lib/github/representation/issue.rb @@ -5,7 +5,7 @@ module Github raw['state'] == 'closed' ? 'closed' : 'opened' end - def has_comments? + def comments? raw['comments'] > 0 end |