Skip to content

Commit

Permalink
fix plugins category
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuancelin committed Dec 11, 2024
1 parent ead345e commit 7ec4271
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions otoroshi/app/next/plugins/otoroshi.scala
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ object PossibleCerts {
class OtoroshiOCSPResponderEndpoint extends NgBackendCall {

override def steps: Seq[NgStep] = Seq(NgStep.CallBackend)
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi"))
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi internals"))
override def visibility: NgPluginVisibility = NgPluginVisibility.NgUserLand
override def multiInstance: Boolean = true
override def core: Boolean = true
Expand All @@ -545,7 +545,7 @@ class OtoroshiOCSPResponderEndpoint extends NgBackendCall {
class OtoroshiAIAEndpoint extends NgBackendCall {

override def steps: Seq[NgStep] = Seq(NgStep.CallBackend)
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi"))
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi internals"))
override def visibility: NgPluginVisibility = NgPluginVisibility.NgUserLand
override def multiInstance: Boolean = true
override def core: Boolean = true
Expand Down Expand Up @@ -575,7 +575,7 @@ class OtoroshiAIAEndpoint extends NgBackendCall {
class OtoroshiJWKSEndpoint extends NgBackendCall {

override def steps: Seq[NgStep] = Seq(NgStep.CallBackend)
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi"))
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi internals"))
override def visibility: NgPluginVisibility = NgPluginVisibility.NgUserLand
override def multiInstance: Boolean = true
override def core: Boolean = true
Expand All @@ -601,7 +601,7 @@ class OtoroshiJWKSEndpoint extends NgBackendCall {
class OtoroshiHealthEndpoint extends NgBackendCall {

override def steps: Seq[NgStep] = Seq(NgStep.CallBackend)
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi"))
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi internals"))
override def visibility: NgPluginVisibility = NgPluginVisibility.NgUserLand
override def multiInstance: Boolean = true
override def core: Boolean = true
Expand Down Expand Up @@ -656,7 +656,7 @@ object OtoroshiMetricsEndpointConfig {
class OtoroshiMetricsEndpoint extends NgBackendCall {

override def steps: Seq[NgStep] = Seq(NgStep.CallBackend)
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi"))
override def categories: Seq[NgPluginCategory] = Seq(NgPluginCategory.Custom("Otoroshi internals"))
override def visibility: NgPluginVisibility = NgPluginVisibility.NgUserLand
override def multiInstance: Boolean = true
override def core: Boolean = true
Expand Down

0 comments on commit 7ec4271

Please sign in to comment.