Removed redundant consts and goal
This commit is contained in:
parent
9729395648
commit
7a64aca888
|
@ -52,7 +52,6 @@ Visit `http://localhost:9001` to access the frontend running in development mode
|
||||||
# TODO: Essentials for v0.10
|
# TODO: Essentials for v0.10
|
||||||
|
|
||||||
- update list time after import
|
- update list time after import
|
||||||
- subscriber status "Enabled" -> "Active"
|
|
||||||
- dockerize
|
- dockerize
|
||||||
- add an http call to do version checks and alerts
|
- add an http call to do version checks and alerts
|
||||||
- make the design responsive
|
- make the design responsive
|
||||||
|
|
|
@ -35,13 +35,6 @@ const (
|
||||||
// commitBatchSize is the number of inserts to commit in a single SQL transaction.
|
// commitBatchSize is the number of inserts to commit in a single SQL transaction.
|
||||||
commitBatchSize = 10000
|
commitBatchSize = 10000
|
||||||
|
|
||||||
// SubscriberStatusEnabled indicates that a subscriber is active.
|
|
||||||
SubscriberStatusEnabled = "enabled"
|
|
||||||
// SubscriberStatusDisabled indicates that a subscriber is inactive or unsubscribed.
|
|
||||||
SubscriberStatusDisabled = "disabled"
|
|
||||||
// SubscriberStatusBlacklisted indicates that a subscriber is blacklisted.
|
|
||||||
SubscriberStatusBlacklisted = "blacklisted"
|
|
||||||
|
|
||||||
StatusNone = "none"
|
StatusNone = "none"
|
||||||
StatusImporting = "importing"
|
StatusImporting = "importing"
|
||||||
StatusStopping = "stopping"
|
StatusStopping = "stopping"
|
||||||
|
|
Loading…
Reference in New Issue