-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
4030: feat(dal,sdf,web): Endpoint to create unlocked sv copy r=vbustamante a=vbustamante also: - Add is_locked, make display_name required, rename name to version on schema variant - Add upgrade code on schema variant content - Unlock variant button on UI, behind feature flag Co-authored-by: Victor Bustamante <[email protected]>
- Loading branch information
Showing
23 changed files
with
589 additions
and
129 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
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
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 |
---|---|---|
|
@@ -43,6 +43,7 @@ impl HistoryActor { | |
HistoryActor::SystemInit => "unknown-backend".to_string(), | ||
} | ||
} | ||
|
||
pub async fn email(&self, ctx: &DalContext) -> HistoryEventResult<String> { | ||
Ok(match self { | ||
HistoryActor::SystemInit => "[email protected]".to_string(), | ||
|
Oops, something went wrong.