mirror of
https://github.com/wassname/talk.git
synced 2026-09-11 12:51:33 +08:00
[CORL 133] API Review (#2197)
* refactor: removed unused subscription code
* refactor: removed management api's
* refactor: cleanup of connections
* refactor: refactored comments edge
* refactor: simplified connection resolving
* feat: added story connection edge
* fix: added story index
* feat: added user pagination and user edge
* fix: added filter to comment query
* fix: removed unused resolvers
* fix: creating a comment reply should require auth
* refactor: cleanup of graph files
* feat: removed display name, made username non-unique
* fix: fixed tests
* fix: fixed tests
* fix: added more api docs
* fix: fixed bug with installer
* refactor: fixes and updates
* fix: added linting for graphql, fixed schema
* feat: added docker build tests
* fix: upped output timeout
* fix: fixed stacktraces in production builds
* fix: removed `git add`
- `git add` was causing issues with
partial staged changs on files
* feat: improved error messaging for auth
* refactor: cleaned up queue names
* fix: merge error
This commit is contained in:
@@ -6,8 +6,8 @@ error-commentBodyExceedsMaxLength =
|
||||
error-storyURLNotPermitted =
|
||||
The specified story URL does not exist in the permitted domains list.
|
||||
error-duplicateStoryURL = The specified story URL already exists.
|
||||
error-tenantNotFound = Tenant hostname ({$hostname}) not found
|
||||
error-userNotFound = User ({$userID}) not found
|
||||
error-tenantNotFound = Tenant hostname ({$hostname}) not found.
|
||||
error-userNotFound = User ({$userID}) not found.
|
||||
error-notFound = Unrecognized request URL ({$method} {$path}).
|
||||
error-tokenInvalid = Invalid API Token provided: {$token}
|
||||
|
||||
@@ -16,7 +16,6 @@ error-emailAlreadySet = Email address has already been set.
|
||||
error-emailNotSet = Email address has not been set yet.
|
||||
error-duplicateUser =
|
||||
Specified user already exists with a different login method.
|
||||
error-duplicateUsername = Specified username has already been taken.
|
||||
error-duplicateEmail = Specified email address is already in use.
|
||||
error-localProfileAlreadySet =
|
||||
Specified account already has a password set.
|
||||
@@ -31,8 +30,6 @@ error-usernameTooShort =
|
||||
Username must have at least {$min} characters.
|
||||
error-passwordTooShort =
|
||||
Password must have at least {$min} characters.
|
||||
error-displayNameExceedsMaxLength =
|
||||
Display Name exceeds maximum length of {$max} characters.
|
||||
error-emailInvalidFormat =
|
||||
Provided email address does not appear to be a valid email.
|
||||
error-emailExceedsMaxLength =
|
||||
@@ -40,3 +37,5 @@ error-emailExceedsMaxLength =
|
||||
error-internalError = Internal Error
|
||||
error-tenantInstalledAlready = Tenant has already been installed already.
|
||||
error-userNotEntitled = You are not authorized to access that resource.
|
||||
error-storyNotFound = Story ({$storyID}) not found.
|
||||
error-commentNotFound = Comment ({$commentID}) not found.
|
||||
Reference in New Issue
Block a user