From 00bc022c58ae493d0ef3a596ac5855f0dbc1ef80 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Wed, 17 Jun 2020 17:24:22 +0200 Subject: [PATCH] Update ContentsController.cs --- .../Controllers/Contents/ContentsController.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/backend/src/Squidex/Areas/Api/Controllers/Contents/ContentsController.cs b/backend/src/Squidex/Areas/Api/Controllers/Contents/ContentsController.cs index 2231c3f5e..c58fb493c 100644 --- a/backend/src/Squidex/Areas/Api/Controllers/Contents/ContentsController.cs +++ b/backend/src/Squidex/Areas/Api/Controllers/Contents/ContentsController.cs @@ -429,14 +429,14 @@ namespace Squidex.Areas.Api.Controllers.Contents } /// - /// Publish a content item. + /// Change status of a content item. /// /// The name of the app. /// The name of the schema. - /// The id of the content item to publish. + /// The id of the content item to change. /// The status request. /// - /// 200 => Content published. + /// 200 => Content status changed. /// 404 => Content, schema or app not found. /// 400 => Request is not valid. /// @@ -458,13 +458,13 @@ namespace Squidex.Areas.Api.Controllers.Contents } /// - /// Create a new version. + /// Create a new draft version. /// /// The name of the app. /// The name of the schema. - /// The id of the content item to discard changes. + /// The id of the content item to create the draft for. /// - /// 200 => Content restored. + /// 200 => Content draft created. /// 404 => Content, schema or app not found. /// /// @@ -485,13 +485,13 @@ namespace Squidex.Areas.Api.Controllers.Contents } /// - /// Discard changes. + /// Delete the draft version. /// /// The name of the app. /// The name of the schema. - /// The id of the content item to discard changes. + /// The id of the content item to delete the draft from. /// - /// 200 => Content restored. + /// 200 => Content draft deleted. /// 404 => Content, schema or app not found. /// ///