// Copyright (c) StellaOps. Licensed under the BUSL-1.1. namespace StellaOps.Timeline.WebService.Security; /// /// Named authorization policy constants for the Timeline service. /// Policies are registered via AddStellaOpsScopePolicy in Program.cs. /// internal static class TimelinePolicies { /// Policy for reading timeline events and replay status. Requires timeline:read scope. public const string Read = "Timeline.Read"; /// Policy for exporting and triggering replay operations. Requires timeline:write scope. public const string Write = "Timeline.Write"; }