-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update language around tlds and introduce nonTldPrefixes
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2a1add1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hmalik88 Can
matchers
be made omitted altogether? With the SNAP we are building, we would like to be able to resolve any name that matches FIO Handle format which is something@something and that does not fit thetlds
ornonTldPrefixes
matchers.2a1add1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In your case, you would omit the
tld
field and provide a non-tld prefix matcher like "fio" in thenonTldPrefixes
array, the client can then know what prefixes to watch out for non-tld input.2a1add1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hmalik88 But wouldn't that require the user to enter fio:something@something vs just something@something?