mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 00:01:34 +00:00
fc3aae10f7
* Create onboarding pages * add the users/onboarding route * make the onboarding not available in oss * Front end for onboarding form for cloud users * WIP: Save current progress on first-timers onboarding feature * Put back the cloud.ts file like before * Add the onboading form when cloud users connect for the first time * Add check to show onboarding only for first time users on cloud * Add submit_onboarding_data route in the backend * Remove useless cookie code * Remove useless function * Remove the unused onMount import * Add SQLx query cache for first_time_user field * Allow dead_code for OnboardingData in OSS version * Point to the latest ee hash * Add maxlength on use_case text input * Collect from the frontend only inputted data from the users - touche_point and use_case * write latest ee ref * Remove checkFirstTimeSetup() call if cloud instance * Remove silent error * Remove magical number from onboarding screen navigation * remove unused databse field for login query * Add first_time_user check in loadUser() * Add input for the Other answer * Update ee hash * Remove autofocus * Improve the submit onboarding data function checks * Fix feature flags * Add latest ee hash * Update to latest hash * Update to last ee hash * nits * simplify feature flag logic * nit * Update ee-repo-ref.txt * nits * update ref --------- Co-authored-by: wendrul <dethomassin.etienne@gmail.com> Co-authored-by: Diego Imbert <70353967+diegoimbert@users.noreply.github.com> Co-authored-by: HugoCasa <hugo@casademont.ch> Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com> Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
5 lines
145 B
TypeScript
5 lines
145 B
TypeScript
import { BROWSER } from 'esm-env'
|
|
|
|
export function isCloudHosted(): boolean {
|
|
return BROWSER && window.location.hostname == 'app.windmill.dev'
|
|
} |