7 months later
a month later

Hi, just wondering if this will be updated for beta 14?

2 months later

Just looking at the code, it seems like this extension might still work. If anyone reports otherwise we'll add the incompatible tag.

Would be nice to see an update to take advantage of the new Extend\Events extender and the new admin panel categories.

    2 months later
    • [deleted]

    Puggo no. It's not updated for beta 16 as far as I can tell

      Puggo yes, this still works on beta 16 without any issues 🙂 just tested it a few minutes ago also by installing it.

        Ralkage so if i run composer require isaced/flarum-ext-email-verification-switch it would install correctly?

          19 days later

          Works perfectly in 0.16. It is a nice extension for new forums to easy registration of new users. When every new user is an important asset.

          2 months later

          Ralkage hi. I am using flarum verision 1.0.2 and here is my composer result:

          root@php-7.4.20 in /shared/httpd/vergi/htdocs $ composer require isaced/flarum-ext-email-verification-switch
          Using version ^0.1.4 for isaced/flarum-ext-email-verification-switch
          ./composer.json has been updated
          Running composer update isaced/flarum-ext-email-verification-switch
          Loading composer repositories with package information
          Updating dependencies
          Your requirements could not be resolved to an installable set of packages.
          
            Problem 1
              - Root composer.json requires isaced/flarum-ext-email-verification-switch ^0.1.4 -> satisfiable by isaced/flarum-ext-email-verification-switch[0.1.4].
              - isaced/flarum-ext-email-verification-switch 0.1.4 requires flarum/core ^0.1.0-beta.16 -> found flarum/core[v0.1.0-beta.16] but it does not match your minimum-stability.
          
          Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
          
          Installation failed, reverting ./composer.json and ./composer.lock to their original content.

            elvish_h while I work on a PR, here is a workaround that you can add to your root Flarum install's extend.php file that will achieve the same as if you were to install this extension 🙂

            use Flarum\Extend;
            use Flarum\User\Event\Registered;
            
            return [
                (new Extend\Event)
                ->listen(Registered::class, function (Registered $event) {
                    $event->user->activate();
                    $event->user->save();
                })
            ];