feat: widget enhancements

This commit is contained in:
Mohamed Marrouchi
2024-11-13 01:19:20 +00:00
parent ceb2e203fd
commit a0fe5ec0be
23 changed files with 109 additions and 102 deletions

View File

@@ -83,8 +83,8 @@ export class ReadOnlyUserController extends BaseController<
*/
@Roles('public')
@Get('bot/profile_pic')
async botProfilePic() {
return getBotAvatar();
async botProfilePic(@Query('color') color: string) {
return getBotAvatar(color);
}
/**