-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some smaller refactorings #3370
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
69ca057
[Refactor] Use method memoization instead of explicitly setting ivar.
timhabermaas 0ea1c9e
[Refactor] Simplify User.register_allowance_evaluator.
timhabermaas d0426dc
[Refactor] Use ActiveRecord#find_by_id instead of #find and rescue.
timhabermaas 5a57a5b
[Refactor] Make wp_hashes_with_string depend solely on its parameters.
timhabermaas 1571abc
[Refactor] Remove useless setters; remove useless mutation of self.
timhabermaas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,14 +55,14 @@ def index | |
|
||
respond_to do |format| | ||
format.html do render layout: false end | ||
format.any(:xml, :json) { render request.format.to_sym => wp_hashes_with_string } | ||
format.any(:xml, :json) { render request.format.to_sym => wp_hashes_with_string(@work_packages) } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Line is too long. [103/100] |
||
end | ||
end | ||
|
||
private | ||
|
||
def wp_hashes_with_string | ||
@work_packages.map do |work_package| | ||
def wp_hashes_with_string(work_packages) | ||
work_packages.map do |work_package| | ||
wp_hash = Hash.new | ||
work_package.attributes.each do |key, value| wp_hash[key] = Rack::Utils.escape_html(value) end | ||
wp_hash['to_s'] = Rack::Utils.escape_html(work_package.to_s) | ||
|
@@ -73,9 +73,7 @@ def wp_hashes_with_string | |
def find_project | ||
project_id = (params[:work_package] && params[:work_package][:project_id]) || params[:project_id] | ||
return nil unless project_id | ||
Project.find(project_id) | ||
rescue ActiveRecord::RecordNotFound | ||
nil | ||
Project.find_by_id(project_id) | ||
end | ||
|
||
def determine_scope | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,11 +28,11 @@ | |
#++ | ||
|
||
class CreateWorkPackageService | ||
attr_accessor :user, :project, :work_package | ||
attr_reader :user, :project | ||
|
||
def initialize(user:, project:, send_notifications: true) | ||
self.user = user | ||
self.project = project | ||
@user = user | ||
@project = project | ||
|
||
JournalManager.send_notification = send_notifications | ||
end | ||
|
@@ -43,7 +43,7 @@ def create | |
author: user, | ||
type: project.types.where(is_default: true).first || project.types.first | ||
} | ||
self.work_package = project.add_work_package(hash) | ||
project.add_work_package(hash) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good catch! I thought, that we stopped remembering the own work package, long ago... |
||
end | ||
|
||
def save(work_package) | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is too long. [103/100]