Fix plural/singular for flags (#1230)
## Description Unify plural/singular for flags ## Type of change <!--- Please check the type of change your PR introduces: ---> - [ ] 🌻 Feature - [x] 🐛 Bugfix - [ ] 🗺️ Documentation - [ ] 🤖 Test - [ ] 💻 CI/Deployment - [ ] 🐹 Trivial/Minor ## Issue(s) <!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. --> ## Test Plan <!-- How will this be tested prior to merging.--> - [x] 💪 Manual - [ ] ⚡ Unit test - [ ] 💚 E2E
This commit is contained in:
parent
645dabd63f
commit
8e1519a325
@ -8,11 +8,11 @@ import (
|
|||||||
|
|
||||||
// flag names
|
// flag names
|
||||||
const (
|
const (
|
||||||
ContactFN = "contacts"
|
ContactFN = "contact"
|
||||||
ContactFolderFN = "contact-folder"
|
ContactFolderFN = "contact-folder"
|
||||||
EmailFN = "email"
|
EmailFN = "email"
|
||||||
EmailFolderFN = "email-folder"
|
EmailFolderFN = "email-folder"
|
||||||
EventFN = "events"
|
EventFN = "event"
|
||||||
EventCalendarFN = "event-calendar"
|
EventCalendarFN = "event-calendar"
|
||||||
ContactNameFN = "contact-name"
|
ContactNameFN = "contact-name"
|
||||||
EmailReceivedAfterFN = "email-received-after"
|
EmailReceivedAfterFN = "email-received-after"
|
||||||
|
|||||||
@ -8,9 +8,9 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
FileFN = "file"
|
FileFN = "file"
|
||||||
FolderFN = "folders"
|
FolderFN = "folder"
|
||||||
NamesFN = "names"
|
NamesFN = "name"
|
||||||
PathsFN = "paths"
|
PathsFN = "path"
|
||||||
FileCreatedAfterFN = "file-created-after"
|
FileCreatedAfterFN = "file-created-after"
|
||||||
FileCreatedBeforeFN = "file-created-before"
|
FileCreatedBeforeFN = "file-created-before"
|
||||||
FileModifiedAfterFN = "file-modified-after"
|
FileModifiedAfterFN = "file-modified-after"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user