소스 검색

Fix RuboCop offense Style/SuperWithArgsParentheses (#37862).


git-svn-id: https://svn.redmine.org/redmine/trunk@22801 e93f8b46-1217-0410-a6f0-8f06a7374b81
pull/149/merge
Go MAEDA 1 개월 전
부모
커밋
6f82abf463
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      app/models/issue_query.rb

+ 1
- 1
app/models/issue_query.rb 파일 보기

@@ -22,7 +22,7 @@ class IssueQuery < Query
COLUMN_SQL = Arel.sql("COALESCE(#{Issue.table_name}.estimated_hours, 0) * (100 - COALESCE(#{Issue.table_name}.done_ratio, 0)) / 100")

def initialize
super :estimated_remaining_hours, totalable: true, sortable: COLUMN_SQL
super(:estimated_remaining_hours, totalable: true, sortable: COLUMN_SQL)
end

def value(object)

Loading…
취소
저장