diff options
| author | Lin Jen-Shin <godfat@godfat.org> | 2016-10-03 19:49:53 +0800 |
|---|---|---|
| committer | Lin Jen-Shin <godfat@godfat.org> | 2016-10-03 19:49:53 +0800 |
| commit | 7fb6a73db505b73a5b092f7e60eb4221d32308e2 (patch) | |
| tree | 58ed0cfdd8fc924904f3579eeea2712cda754024 | |
| parent | 44558c7231c28ba8bf816678298ccd14e4afdaa5 (diff) | |
| download | gitlab-ce-7fb6a73db505b73a5b092f7e60eb4221d32308e2.tar.gz | |
We don't need self. there. (sorry, can't resist anymore)
| -rw-r--r-- | app/models/concerns/has_status.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/concerns/has_status.rb b/app/models/concerns/has_status.rb index 72ec5a8525b..2dd2c5f2c0f 100644 --- a/app/models/concerns/has_status.rb +++ b/app/models/concerns/has_status.rb @@ -33,7 +33,7 @@ module HasStatus end def status - all.pluck(self.status_sql).first + all.pluck(status_sql).first end def started_at |
