add-user ( provider user -- provider )


Vocabulary
furnace.auth.providers

Inputs
provideran authentication provider
useran user


Outputs
provideran authentication provider


Word description
A utility word which calls new-user and throws an error if the user already exists.

Definition


: add-user ( provider user -- provider )
over new-user [ "User exists" throw ] when ;