This commit is contained in:
Athou
2023-05-31 07:36:50 +02:00
parent 5ecf3e0fbf
commit d6205b7da3
5 changed files with 11 additions and 11 deletions

View File

@@ -4,7 +4,7 @@ app:
# url used to access commafeed # url used to access commafeed
publicUrl: http://localhost:8082/ publicUrl: http://localhost:8082/
# wether to allow user registrations # whether to allow user registrations
allowRegistrations: true allowRegistrations: true
# whether to enable strict password validation (1 uppercase char, 1 lowercase char, 1 digit, 1 special char) # whether to enable strict password validation (1 uppercase char, 1 lowercase char, 1 digit, 1 special char)
@@ -40,14 +40,14 @@ app:
graphitePort: 2003 graphitePort: 2003
graphiteInterval: 60 graphiteInterval: 60
# wether this commafeed instance has a lot of feeds to refresh # whether this commafeed instance has a lot of feeds to refresh
# leave this to false in almost all cases # leave this to false in almost all cases
heavyLoad: false heavyLoad: false
# minimum amount of time commafeed will wait before refreshing the same feed # minimum amount of time commafeed will wait before refreshing the same feed
refreshIntervalMinutes: 5 refreshIntervalMinutes: 5
# wether to enable pubsub # whether to enable pubsub
# probably not needed if refreshIntervalMinutes is low # probably not needed if refreshIntervalMinutes is low
pubsubhubbub: false pubsubhubbub: false

View File

@@ -41,14 +41,14 @@ app:
graphitePort: 2003 graphitePort: 2003
graphiteInterval: 60 graphiteInterval: 60
# wether this commafeed instance has a lot of feeds to refresh # whether this commafeed instance has a lot of feeds to refresh
# leave this to false in almost all cases # leave this to false in almost all cases
heavyLoad: false heavyLoad: false
# minimum amount of time commafeed will wait before refreshing the same feed # minimum amount of time commafeed will wait before refreshing the same feed
refreshIntervalMinutes: 5 refreshIntervalMinutes: 5
# wether to enable pubsub # whether to enable pubsub
# probably not needed if refreshIntervalMinutes is low # probably not needed if refreshIntervalMinutes is low
pubsubhubbub: false pubsubhubbub: false

View File

@@ -31,7 +31,7 @@ public class Category implements Serializable {
@ApiModelProperty(value = "category feeds", required = true) @ApiModelProperty(value = "category feeds", required = true)
private List<Subscription> feeds = new ArrayList<>(); private List<Subscription> feeds = new ArrayList<>();
@ApiModelProperty(value = "wether the category is expanded or collapsed", required = true) @ApiModelProperty(value = "whether the category is expanded or collapsed", required = true)
private boolean expanded; private boolean expanded;
@ApiModelProperty(value = "position of the category in the list", required = true) @ApiModelProperty(value = "position of the category in the list", required = true)

View File

@@ -45,7 +45,7 @@ public class Entry implements Serializable {
@ApiModelProperty(value = "comma-separated list of categories") @ApiModelProperty(value = "comma-separated list of categories")
private String categories; private String categories;
@ApiModelProperty(value = "wether entry content and title are rtl", required = true) @ApiModelProperty(value = "whether entry content and title are rtl", required = true)
private boolean rtl; private boolean rtl;
@ApiModelProperty(value = "entry author") @ApiModelProperty(value = "entry author")
@@ -99,7 +99,7 @@ public class Entry implements Serializable {
@ApiModelProperty(value = "starred status", required = true) @ApiModelProperty(value = "starred status", required = true)
private boolean starred; private boolean starred;
@ApiModelProperty(value = "wether the entry is still markable (old entry statuses are discarded)", required = true) @ApiModelProperty(value = "whether the entry is still markable (old entry statuses are discarded)", required = true)
private boolean markable; private boolean markable;
@ApiModelProperty(value = "tags", required = true) @ApiModelProperty(value = "tags", required = true)

View File

@@ -4,7 +4,7 @@ app:
# url used to access commafeed # url used to access commafeed
publicUrl: http://localhost:8082/ publicUrl: http://localhost:8082/
# wether to allow user registrations # whether to allow user registrations
allowRegistrations: true allowRegistrations: true
# whether to enable strict password validation (1 uppercase char, 1 lowercase char, 1 digit, 1 special char) # whether to enable strict password validation (1 uppercase char, 1 lowercase char, 1 digit, 1 special char)
@@ -40,14 +40,14 @@ app:
graphitePort: 2003 graphitePort: 2003
graphiteInterval: 60 graphiteInterval: 60
# wether this commafeed instance has a lot of feeds to refresh # whether this commafeed instance has a lot of feeds to refresh
# leave this to false in almost all cases # leave this to false in almost all cases
heavyLoad: false heavyLoad: false
# minimum amount of time commafeed will wait before refreshing the same feed # minimum amount of time commafeed will wait before refreshing the same feed
refreshIntervalMinutes: 5 refreshIntervalMinutes: 5
# wether to enable pubsub # whether to enable pubsub
# probably not needed if refreshIntervalMinutes is low # probably not needed if refreshIntervalMinutes is low
pubsubhubbub: false pubsubhubbub: false