Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Apps.Optimizely/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class Application : IApplication, ICategoryProvider
{
public IEnumerable<ApplicationCategory> Categories
{
get => [];
get => [ApplicationCategory.Cms];
set { }
}

Expand Down
2 changes: 1 addition & 1 deletion Apps.Optimizely/Apps.Optimizely.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<Product>Optimizely [Beta]</Product>
<Description>Optimizely Content Management System (CMS) is a high-performance, SaaS-based platform that enables marketers and developers to create, manage, and deliver personalized, multi-channel digital experiences. Formerly Episerver, it combines a user-friendly editorial interface with flexible headless capabilities, robust APIs, and built-in AI tools for optimized content delivery.</Description>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<AssemblyName>Apps.Optimizely</AssemblyName>
</PropertyGroup>

Expand Down
1 change: 1 addition & 0 deletions Apps.Optimizely/Invocable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public class Invocable : BaseInvocable
InvocationContext.AuthenticationCredentialsProviders.ToArray();

protected Client Client { get; }

public Invocable(InvocationContext invocationContext) : base(invocationContext)
{
Client = new(Creds);
Expand Down