feat: allow users to set an icon or emoji for teams (#14767)

This commit is contained in:
Sivin Varghese
2026-06-23 20:53:31 +05:30
committed by GitHub
parent e785620921
commit e8edc9ebf5
11 changed files with 139 additions and 17 deletions
@@ -29,6 +29,6 @@ class Api::V1::Accounts::TeamsController < Api::V1::Accounts::BaseController
end
def team_params
params.require(:team).permit(:name, :description, :allow_auto_assign)
params.require(:team).permit(:name, :description, :allow_auto_assign, :icon, :icon_color)
end
end