summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Sizov <vsv2711@gmail.com>2015-11-19 01:31:15 +0200
committerValery Sizov <vsv2711@gmail.com>2015-11-19 01:31:15 +0200
commita2912074be67deb6345a37787c14b7e640be26f8 (patch)
tree7b2f572e01d56c42e97a6c64f37f1e539c0b49cb
parentfa2ed94fe9aa9f4d43c2aec7d99103982976063f (diff)
downloadgitlab-ce-a2912074be67deb6345a37787c14b7e640be26f8.tar.gz
satisfy rubocop
-rw-r--r--app/controllers/projects/notes_controller.rb4
-rw-r--r--db/schema.rb4
-rw-r--r--lib/award_emoji.rb8
3 files changed, 8 insertions, 8 deletions
diff --git a/app/controllers/projects/notes_controller.rb b/app/controllers/projects/notes_controller.rb
index 98bf056a605..8159cc50838 100644
--- a/app/controllers/projects/notes_controller.rb
+++ b/app/controllers/projects/notes_controller.rb
@@ -3,7 +3,7 @@ class Projects::NotesController < Projects::ApplicationController
before_action :authorize_read_note!
before_action :authorize_create_note!, only: [:create]
before_action :authorize_admin_note!, only: [:update, :destroy]
- before_action :find_current_user_notes, except: [:destroy, :delete_attachment, :award_toggle]]
+ before_action :find_current_user_notes, except: [:destroy, :delete_attachment, :award_toggle]
def index
current_fetched_at = Time.now.to_i
@@ -76,7 +76,7 @@ class Projects::NotesController < Projects::ApplicationController
project.notes.create(data)
end
- render json: {ok: true}
+ render json: { ok: true }
end
private
diff --git a/db/schema.rb b/db/schema.rb
index f77f6dfc66d..3062bf4d419 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -642,9 +642,7 @@ ActiveRecord::Schema.define(version: 20151116144118) do
t.integer "star_count", default: 0, null: false
t.string "import_type"
t.string "import_source"
- t.integer "commit_count", default: 0
- t.boolean "merge_requests_ff_only_enabled", default: false
- t.text "issues_template"
+ t.integer "commit_count", default: 0
t.text "import_error"
end
diff --git a/lib/award_emoji.rb b/lib/award_emoji.rb
index 9e296f0bc3c..d58a196c4ef 100644
--- a/lib/award_emoji.rb
+++ b/lib/award_emoji.rb
@@ -1,10 +1,12 @@
class AwardEmoji
- EMOJI_LIST = ["+1", "-1", "100", "blush", "heart", "smile", "rage",
+ EMOJI_LIST = [
+ "+1", "-1", "100", "blush", "heart", "smile", "rage",
"beers", "disappointed", "ok_hand",
"helicopter", "shit", "airplane", "alarm_clock",
- "ambulance", "anguished", "two_hearts", "wink"]
+ "ambulance", "anguished", "two_hearts", "wink"
+ ]
def self.path_to_emoji_image(name)
"emoji/#{Emoji.emoji_filename(name)}.png"
end
-end \ No newline at end of file
+end