-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement user profiles and rel=me verification (#248)
* Implement user profiles and rel=me verification * Review comments (I) * Do not verify non-HTTPS URLs * Implement `profile <entity>` and `update_profile <entity>` commands * E2E test `profile` and `update_profile` commands * Rebase * Allow functions with >7 arguments in E2E testing * Clippy * Update README * Typo * Replace panic with early return * Review comments (II) * Move to partial profile for the update endpoint * Update tests * Fix tests * Review comments (III) * Review comments (IV) * Add links to E2E tests * Fix tests * Update link arg to links * Fix tests * Clippy * Update http endpoint to allow http users to represent all of the possible state * Fix client impl * Add docstring * Clippy
- Loading branch information
Showing
22 changed files
with
927 additions
and
48 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ALTER TABLE entity | ||
ADD display_name VARCHAR(35), | ||
ADD description VARCHAR(100), | ||
ADD organization VARCHAR(35), | ||
ADD location VARCHAR(35), | ||
ADD links JSONB; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ALTER TABLE entity ADD display_name VARCHAR(35); | ||
ALTER TABLE entity ADD description VARCHAR(100); | ||
ALTER TABLE entity ADD organization VARCHAR(35); | ||
ALTER TABLE entity ADD location VARCHAR(35); | ||
ALTER TABLE entity ADD links JSONB; |
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
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
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
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
Oops, something went wrong.