diff --git a/cs3/app/provider/v1beta1/provider_api.proto b/cs3/app/provider/v1beta1/provider_api.proto index 84b0f525..85d0415a 100644 --- a/cs3/app/provider/v1beta1/provider_api.proto +++ b/cs3/app/provider/v1beta1/provider_api.proto @@ -89,12 +89,6 @@ message OpenInAppRequest { // The access token MUST be short-lived. // TODO(labkode): investigate token derivation techniques. string access_token = 4; - // OPTIONAL. - // A reference to the application to be used to open the resource, should the - // default inferred from the resource's mimetype be overridden by user's choice. - // If the targeted resource is a directory, this parameter is required and - // in its absence the implementation MUST return INVALID_ARGUMENT. - string app = 5; } message OpenInAppResponse { diff --git a/cs3/gateway/v1beta1/gateway_api.proto b/cs3/gateway/v1beta1/gateway_api.proto index 8e49fb78..ae815dda 100644 --- a/cs3/gateway/v1beta1/gateway_api.proto +++ b/cs3/gateway/v1beta1/gateway_api.proto @@ -550,8 +550,10 @@ message OpenInAppRequest { } ViewMode view_mode = 3; // OPTIONAL. - // The application to be used to open the resource. Defaults to the primary application - // registered for the mime type of the given resource. + // A reference to the application to be used to open the resource, should the + // default inferred from the resource's mimetype be overridden by user's choice. + // If the targeted resource is a directory, this parameter is required and + // in its absence the implementation MUST return INVALID_ARGUMENT. string app = 4; } diff --git a/docs/index.html b/docs/index.html index a7d4a8b4..cafc622f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2362,8 +2362,10 @@
OPTIONAL. -The application to be used to open the resource. Defaults to the primary application -registered for the mime type of the given resource.
OPTIONAL. -A reference to the application to be used to open the resource, should the -default inferred from the resource's mimetype be overridden by user's choice. -If the targeted resource is a directory, this parameter is required and -in its absence the implementation MUST return INVALID_ARGUMENT.