Procházet zdrojové kódy

Merge branch 'stable'

Piotrek Koszuliński před 7 roky
rodič
revize
d76ea9bb31

+ 15 - 8
packages/ckeditor5-cloud-services/src/cloudservices.js

@@ -94,21 +94,28 @@ CloudServices.Token = Token;
  */
 
 /**
- * The authentication token endpoint URL for CKEditor Cloud Services.
- * The token endpoint is used to authenticate all plugins using Cloud Services (for instance – Easy Image).
- * The token URL has to point to the service where the token is generated.
+ * The URL to the security token endpoint in your application. The role of this endpoint is to securely authorize the
+ * end users of your application to use [CKEditor Cloud Services](https://ckeditor.com/ckeditor-cloud-services), only
+ * if they should have access e.g. to upload files with Easy Image.
  *
- * You can read about creating token endpoints in the
- * {@glink @cs guides/token-endpoints/tokenendpoint Creating token endpoint} guide
- * in {@glink @cs index Cloud Services documentation}.
+ * You can find more information about token endpoints in the
+ * {@glink @cs guides/quick-start#create-token-endpoint Cloud Services - Quick start}
+ * and {@glink @cs guides/token-endpoints/tokenendpoint Cloud Services - Creating token endpoint} documentation.
  *
- * See also [Cloud Services Quick start](https://docs.ckeditor.com/cs/latest/guides/quick-start.html).
+ * Without a properly working token endpoint (token URL) CKEditor plugins will not be able to connect to CKEditor Cloud Services.
  *
  * @member {String} module:cloudservices/cloudservices~CloudServicesConfig#tokenUrl
  */
 
 /**
- * The URL to which the files should be uploaded.
+ * The endpoint URL for [CKEditor Cloud Services](https://ckeditor.com/ckeditor-cloud-services) uploads.
+ * This option must be set for Easy Image to work correctly.
+ *
+ * The upload URL is unique for each customer and can be found in the [CKEditor Ecosystem dashboard](https://dashboard.ckeditor.com)
+ * after subscribing to Easy Image service.
+ * To learn how to start using Easy Image check {@glink @cs guides/quick-start Cloud Services - Quick start} documentation.
+ *
+ * Note: Make sure to also set the {@link module:cloudservices/cloudservices~CloudServicesConfig#tokenUrl} configuration option.
  *
  * Read more in [Cloud Services Quick start](https://docs.ckeditor.com/cs/latest/guides/quick-start.html).
  *