mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
Remove byebug
This commit is contained in:
parent
305104f639
commit
bcb8cc1840
1 changed files with 0 additions and 4 deletions
|
@ -8,7 +8,6 @@ module RepositoryColumns
|
|||
before_action :check_manage_permissions, only: %i(update destroy)
|
||||
|
||||
def create
|
||||
byebug
|
||||
service = RepositoryColumns::CreateColumnService
|
||||
.call(user: current_user, repository: @repository, team: current_team,
|
||||
column_type: Extends::REPOSITORY_DATA_TYPES[:RepositoryTextValue],
|
||||
|
@ -24,8 +23,6 @@ module RepositoryColumns
|
|||
end
|
||||
|
||||
def update
|
||||
byebug
|
||||
|
||||
service = RepositoryColumns::UpdateColumnService
|
||||
.call(user: current_user,
|
||||
team: current_team,
|
||||
|
@ -40,7 +37,6 @@ module RepositoryColumns
|
|||
end
|
||||
|
||||
def destroy
|
||||
byebug
|
||||
service = RepositoryColumns::DeleteColumnService
|
||||
.call(user: current_user, team: current_team, column: @repository_column)
|
||||
|
||||
|
|
Loading…
Reference in a new issue