(bots []dto.AgentTelegramBot, defaultAccount string)
| 1538 | } |
| 1539 | |
| 1540 | func setTelegramDefaultFlags(bots []dto.AgentTelegramBot, defaultAccount string) { |
| 1541 | for i := range bots { |
| 1542 | bots[i].IsDefault = bots[i].AccountID == defaultAccount |
| 1543 | } |
| 1544 | } |
| 1545 | |
| 1546 | func setDiscordDefaultFlags(bots []dto.AgentDiscordBot, defaultAccount string) { |
| 1547 | for i := range bots { |
no outgoing calls
no test coverage detected