feat: add update-profile command to change account name#1
Open
shmlkv wants to merge 2 commits intoslopus:mainfrom
Open
feat: add update-profile command to change account name#1shmlkv wants to merge 2 commits intoslopus:mainfrom
shmlkv wants to merge 2 commits intoslopus:mainfrom
Conversation
Adds a new CLI command `murmur update-profile` that allows changing the firstName and lastName of an existing account. Usage: murmur update-profile --first-name <name> [--last-name <name>] Changes: - Added updateProfile method to MurmurEngine - Added update-profile command to CLI - Imports signProfileKey for re-signing the profile
Adds 'text' field to WebhookContext so webhooks receive the actual
message content without needing a separate sync call.
Usage in webhook-body:
--webhook-body '{"text": "{{text}}", ...}'
Contributor
|
nice! can you make it |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new CLI command
murmur update-profilethat allows changing the firstName and lastName of an existing account.Usage
Changes
updateProfilemethod toMurmurEnginethat:api.updateProfileendpointupdate-profilecommand to CLIsignProfileKeyto imports from profile.tsWhy
Currently, if you want to change your display name, you have to delete your account and create a new one, losing your ID and contacts. This command allows updating the profile while keeping the same identity.