Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Register Support #5

Open
slamcoderpt opened this issue Sep 2, 2024 · 6 comments
Open

[Feature] Register Support #5

slamcoderpt opened this issue Sep 2, 2024 · 6 comments
Labels
help wanted Extra attention is needed

Comments

@slamcoderpt
Copy link

Does this support the user register and auto creating a panel?

@3x1io 3x1io added the help wanted Extra attention is needed label Sep 11, 2024
@3x1io 3x1io changed the title Register Support [Feature] Register Support Sep 11, 2024
@3x1io
Copy link
Member

3x1io commented Sep 11, 2024

yes, it will be ready in the next version, with the support of social media.

@3x1io 3x1io changed the title [Feature] Register Support [Feature] Add Register Page To register a tenant app Sep 11, 2024
@3x1io 3x1io changed the title [Feature] Add Register Page To register a tenant app [Feature] Register Support Sep 11, 2024
@devenergycon
Copy link

ok when will next version be released?

@3x1io
Copy link
Member

3x1io commented Sep 16, 2024

very soon.

@slamcoderpt
Copy link
Author

will you release before the end of september?

Copy link
Member

3x1io commented Sep 22, 2024

I think so it's ready just need some tests

@Fzoltan87
Copy link

Is this feature already working? I placed the routes in the routes/web.php file:

Route::domain(config('filament-tenancy.central_domain'))->middleware(['web'])->group(function () {
    if(config('filament-tenancy.features.homepage')){
        Route::get('/', \TomatoPHP\FilamentTenancy\Livewire\RegisterDemo::class)->name('tenancy.home');
    }

    if(config('filament-tenancy.features.auth')){
        Route::get('/tenancy/verify-otp', \TomatoPHP\FilamentTenancy\Livewire\RegisterOtp::class)->name('tenancy.verify.otp');

        Route::middleware(['web', 'throttle:10'])->group(function (){
            Route::get('/tenancy/login/{provider}', [\TomatoPHP\FilamentTenancy\Http\Controllers\AuthController::class, 'provider'])->name('tenancy.login.provider');
            Route::get('/tenancy/login/{provider}/callback', [\TomatoPHP\FilamentTenancy\Http\Controllers\AuthController::class, 'callback'])->name('tenancy.login.provider.callback');
        });
    }
});

After clicking the "Start" and "Demo login" buttons, this error appears:

kép

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

4 participants