diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-01-21 13:02:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 13:02:43 +0100 |
commit | dc2a6d7bcee85481f3e53daffdb00436af01c309 (patch) | |
tree | 722ea33161735cc2efd1f94b51df88b939ff6d19 /src-tauri/src/main.rs | |
parent | 4d930dc7f38ebe4874e007628ff9b733d7b64e5b (diff) | |
download | FlightCore-dc2a6d7bcee85481f3e53daffdb00436af01c309.tar.gz FlightCore-dc2a6d7bcee85481f3e53daffdb00436af01c309.zip |
feat: Add option to clone existing profile (#761)
* add dev button to refetch profiles
* add dialog box with a table of all profiles
* add button to delete non default profiles to dialog box
* add button to clone profile to dialog box
* style: Add trailing comma
* docs: Add doc comment explaining function
* fix: Remove leftover testing code
* fix: Delete duplicate function registration
* chore: Sort Tauri function registrations alphabetically
---------
Co-authored-by: Jan200101 <sentrycraft123@gmail.com>
Diffstat (limited to 'src-tauri/src/main.rs')
-rw-r--r-- | src-tauri/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index a2e293b0..1fc55678 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -138,6 +138,7 @@ fn main() { northstar::install::install_northstar_wrapper, northstar::install::update_northstar, northstar::launch_northstar, + northstar::profile::clone_profile, northstar::profile::delete_profile, northstar::profile::fetch_profiles, northstar::profile::validate_profile, |