Commit 0359f1d9 authored by Andrew8xx8's avatar Andrew8xx8

Codestyle improved

parent 3e695acf
...@@ -29,9 +29,8 @@ class Projects::SnippetsController < Projects::ApplicationController ...@@ -29,9 +29,8 @@ class Projects::SnippetsController < Projects::ApplicationController
def create def create
@snippet = @project.snippets.build(params[:project_snippet]) @snippet = @project.snippets.build(params[:project_snippet])
@snippet.author = current_user @snippet.author = current_user
@snippet.save
if @snippet.valid? if @snippet.save
redirect_to project_snippet_path(@project, @snippet) redirect_to project_snippet_path(@project, @snippet)
else else
respond_with(@snippet) respond_with(@snippet)
...@@ -42,9 +41,7 @@ class Projects::SnippetsController < Projects::ApplicationController ...@@ -42,9 +41,7 @@ class Projects::SnippetsController < Projects::ApplicationController
end end
def update def update
@snippet.update_attributes(params[:project_snippet]) if @snippet.update_attributes(params[:project_snippet])
if @snippet.valid?
redirect_to project_snippet_path(@project, @snippet) redirect_to project_snippet_path(@project, @snippet)
else else
respond_with(@snippet) respond_with(@snippet)
......
...@@ -31,15 +31,14 @@ class SnippetsController < ApplicationController ...@@ -31,15 +31,14 @@ class SnippetsController < ApplicationController
end end
def new def new
@snippet = PersonalSnippet.new @snippet = PersonalSnippet.build
end end
def create def create
@snippet = PersonalSnippet.new(params[:personal_snippet]) @snippet = PersonalSnippet.build(params[:personal_snippet])
@snippet.author = current_user @snippet.author = current_user
@snippet.save
if @snippet.valid? if @snippet.save
redirect_to snippet_path(@snippet) redirect_to snippet_path(@snippet)
else else
respond_with @snippet respond_with @snippet
...@@ -50,9 +49,7 @@ class SnippetsController < ApplicationController ...@@ -50,9 +49,7 @@ class SnippetsController < ApplicationController
end end
def update def update
@snippet.update_attributes(params[:personal_snippet]) if @snippet.update_attributes(params[:personal_snippet])
if @snippet.valid?
redirect_to snippet_path(@snippet) redirect_to snippet_path(@snippet)
else else
respond_with @snippet respond_with @snippet
......
...@@ -46,7 +46,7 @@ Gitlab::Application.routes.draw do ...@@ -46,7 +46,7 @@ Gitlab::Application.routes.draw do
get "raw" get "raw"
end end
end end
match "/s/:username" => "snippets#user_index", as: :user_snippets, constraints: { username: /.*/ } get "/s/:username" => "snippets#user_index", as: :user_snippets, constraints: { username: /.*/ }
# #
# Public namespace # Public namespace
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment