Skip to content

Commit

Permalink
Merge pull request #17 from bb-io/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
vitalii-bezuhlyi authored Oct 10, 2024
2 parents 95304d7 + ce13e95 commit 95eb683
Show file tree
Hide file tree
Showing 8 changed files with 332 additions and 34 deletions.
2 changes: 1 addition & 1 deletion Apps.Crowdin/Apps.Crowdin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<Product>Crowdin</Product>
<Description>Cloud-based solution that streamlines localization management</Description>
<Version>1.0.13</Version>
<Version>1.0.14</Version>
<AssemblyName>Apps.Crowdin</AssemblyName>
</PropertyGroup>
<ItemGroup>
Expand Down
9 changes: 9 additions & 0 deletions Apps.Crowdin/Models/Request/File/GetFileOptionalRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using Blackbird.Applications.Sdk.Common;

namespace Apps.Crowdin.Models.Request.File;

public class GetFileOptionalRequest
{
[Display("File ID")]
public string? FileId { get; set; }
}
12 changes: 12 additions & 0 deletions Apps.Crowdin/Models/Request/Project/GetProjectOptionalRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using Apps.Crowdin.DataSourceHandlers;
using Blackbird.Applications.Sdk.Common;
using Blackbird.Applications.Sdk.Common.Dynamic;

namespace Apps.Crowdin.Models.Request.Project;

public class GetProjectOptionalRequest
{
[Display("Project ID")]
[DataSource(typeof(ProjectDataHandler))]
public string? ProjectId { get; set; }
}
2 changes: 1 addition & 1 deletion Apps.Crowdin/Models/Request/Project/ProjectRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Apps.Crowdin.Models.Request.Project;

public class ProjectRequest
{
[Display("Project")]
[Display("Project ID")]
[DataSource(typeof(ProjectDataHandler))]
public string ProjectId { get; set; }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using Blackbird.Applications.Sdk.Common;

namespace Apps.Crowdin.Models.Request.SourceString;

public class GetSourceStringOptionalRequest
{
[Display("String ID")]
public string? StringId { get; set; }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using Blackbird.Applications.Sdk.Common;

namespace Apps.Crowdin.Models.Request.Suggestions;

public class GetSuggestionOptionalRequest
{
[Display("Suggestion ID")]
public string? SuggestionId { get; set; }
}
9 changes: 9 additions & 0 deletions Apps.Crowdin/Models/Request/Task/GetTaskOptionalRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using Blackbird.Applications.Sdk.Common;

namespace Apps.Crowdin.Models.Request.Task;

public class GetTaskOptionalRequest
{
[Display("Task ID")]
public string? TaskId { get; set; }
}
314 changes: 282 additions & 32 deletions Apps.Crowdin/Webhooks/Lists/ProjectWebhookList.cs

Large diffs are not rendered by default.

0 comments on commit 95eb683

Please sign in to comment.