2022-05-12 13:23:17 +02:00
|
|
|
using System;
|
|
|
|
|
2017-09-13 23:50:36 +09:00
|
|
|
namespace BTCPayServer.Views.Stores
|
|
|
|
{
|
2018-08-22 13:50:29 +02:00
|
|
|
public enum StoreNavPages
|
2017-10-27 17:53:04 +09:00
|
|
|
{
|
2022-05-12 13:23:17 +02:00
|
|
|
Create,
|
|
|
|
Dashboard,
|
|
|
|
General,
|
|
|
|
Rates,
|
|
|
|
OnchainSettings,
|
|
|
|
LightningSettings,
|
|
|
|
Lightning,
|
|
|
|
CheckoutAppearance,
|
|
|
|
Tokens,
|
|
|
|
Users,
|
|
|
|
PayButton,
|
2023-03-27 16:40:50 +02:00
|
|
|
[Obsolete("Use custom categories for your plugin/integration instead")]
|
2022-05-12 13:23:17 +02:00
|
|
|
Plugins,
|
|
|
|
Webhooks,
|
|
|
|
PullPayments,
|
|
|
|
Payouts,
|
2022-09-20 10:05:55 +02:00
|
|
|
PayoutProcessors,
|
2022-05-12 13:23:17 +02:00
|
|
|
[Obsolete("Use StoreNavPages.Plugins instead")]
|
2022-06-22 05:05:32 +02:00
|
|
|
Integrations,
|
2022-11-25 02:42:55 +01:00
|
|
|
Emails,
|
|
|
|
Forms
|
2017-10-27 17:53:04 +09:00
|
|
|
}
|
2017-09-13 23:50:36 +09:00
|
|
|
}
|