Browse Source

fix: org team nickname change error

tags/v3.0.2^2
vilet.yy 5 years ago
parent
commit
8055ae2c07
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/organizations/teams/update_service.rb

+ 1
- 1
app/services/organizations/teams/update_service.rb View File

@@ -27,7 +27,7 @@ class Organizations::Teams::UpdateService < ApplicationService
if team.authorize == "owner"
update_params = params.slice(:description)
else
update_params = params.slice(:name, :description, :authorize, :includes_all_project, :can_create_org_project)
update_params = params.slice(:name, :nickname, :description, :authorize, :includes_all_project, :can_create_org_project)
end
update_params
end


Loading…
Cancel
Save