diff --git a/app/controllers/avatars.php b/app/controllers/avatars.php index 56e8cd3a98..be5986f892 100644 --- a/app/controllers/avatars.php +++ b/app/controllers/avatars.php @@ -341,7 +341,7 @@ $utopia->get('/v1/avatars/favicon') ); $utopia->get('/v1/avatars/qr') - ->desc('Text to QR Generator') + ->desc('Get QR Code') ->param('text', '', function () { return new Text(512); }, 'Plain text to be converted to QR code image') ->param('size', 400, function () { return new Range(0, 1000); }, 'QR code size. Pass an integer between 0 to 1000. Defaults to 400.', true) ->param('margin', 1, function () { return new Range(0, 10); }, 'Margin From Edge. Pass an integer between 0 to 10. Defaults to 1.', true)