1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

Updated docs

This commit is contained in:
eldadfux 2019-08-23 17:16:25 +03:00
parent 0ca741f1a0
commit fd1057e7ed

View file

@ -123,14 +123,14 @@ $utopia->get('/v1/avatars/flags/:code')
->action(function ($code, $width, $height, $quality) use ($avatarCallback) {return $avatarCallback('flags', $code, $width, $height, $quality);});
$utopia->get('/v1/avatars/image')
->desc('Get image from and HTTP URL and crop to any size.')
->desc('Get Image from URL')
->param('url', '', function () {return new URL();}, 'Image URL which you want to crop.')
->param('width', 400, function () {return new Range(0, 2000);}, 'Resize preview image width, Pass an integer between 0 to 4000', true)
->param('height', 400, function () {return new Range(0, 2000);}, 'Resize preview image height, Pass an integer between 0 to 4000', true)
->label('scope', 'avatars.read')
->label('sdk.namespace', 'avatars')
->label('sdk.method', 'getImage')
->label('sdk.description', 'Use this endpoint to fetch a remote image URL and crop it to any image size you want. This endpoint is very useful if you need to crop a remote image or in cases, you want to make sure a 3rd party image is properly served using a TLS protocol.')
->label('sdk.description', 'Use this endpoint to fetch a remote image URL and crop it to any image size you want. This endpoint is very useful if you need to crop and display remote images in your app or in cases, you want to make sure a 3rd party image is properly served using a TLS protocol.')
->action(
function($url, $width, $height) use ($response, $request, $version)
{