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
|
||||
const (
|
||||
ContactFN = "contacts"
|
||||
ContactFN = "contact"
|
||||
ContactFolderFN = "contact-folder"
|
||||
EmailFN = "email"
|
||||
EmailFolderFN = "email-folder"
|
||||
EventFN = "events"
|
||||
EventFN = "event"
|
||||
EventCalendarFN = "event-calendar"
|
||||
ContactNameFN = "contact-name"
|
||||
EmailReceivedAfterFN = "email-received-after"
|
||||
|
||||
@ -8,9 +8,9 @@ import (
|
||||
|
||||
const (
|
||||
FileFN = "file"
|
||||
FolderFN = "folders"
|
||||
NamesFN = "names"
|
||||
PathsFN = "paths"
|
||||
FolderFN = "folder"
|
||||
NamesFN = "name"
|
||||
PathsFN = "path"
|
||||
FileCreatedAfterFN = "file-created-after"
|
||||
FileCreatedBeforeFN = "file-created-before"
|
||||
FileModifiedAfterFN = "file-modified-after"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user