mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.7 KiB
41 lines
1.7 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Squidex.Domain.Apps.Core.HandleRules;
|
|
using Squidex.Domain.Apps.Core.Rules;
|
|
|
|
namespace Squidex.Extensions.Actions.Medium
|
|
{
|
|
[RuleActionHandler(typeof(MediumActionHandler))]
|
|
[RuleAction(Link = "https://medium.com/",
|
|
Display = "Post to Medium",
|
|
Description = "Create a new story or post at medium.")]
|
|
public sealed class MediumAction : RuleAction
|
|
{
|
|
[Required]
|
|
[Display(Name = "Access Token", Description = "The self issued access token.")]
|
|
public string AccessToken { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Title", Description = "The title, used for the url.")]
|
|
public string Title { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Content", Description = "The content, either html or markdown.")]
|
|
public string Content { get; set; }
|
|
|
|
[Display(Name = "Canonical Url", Description = "The original home of this content, if it was originally published elsewhere.")]
|
|
public string CanonicalUrl { get; set; }
|
|
|
|
[Display(Name = "Tags", Description = "The optional comma separated list of tags.")]
|
|
public string Tags { get; set; }
|
|
|
|
[Display(Name = "Is Html", Description = "Indicates whether the content is markdown or html.")]
|
|
public bool IsHtml { get; set; }
|
|
}
|
|
}
|
|
|