update: fix typo "a email" (#33482)
- "a email" becomes "an email". Signed-off-by: Pedro Aguiar <contact@codespearhead.com>
This commit is contained in:
parent
002560ef3e
commit
f60be4bf8e
2 changed files with 3 additions and 3 deletions
|
@ -260,7 +260,7 @@ An example for a custom `footer.ftl` may look like this:
|
|||
</#macro>
|
||||
```
|
||||
|
||||
==== Adding an image to a email theme
|
||||
==== Adding an image to an email theme
|
||||
|
||||
To make images available to the theme add them to the `<THEME TYPE>/email/resources/img` directory of your theme. These can be used from within directly in HTML templates.
|
||||
|
||||
|
|
|
@ -635,7 +635,7 @@ public abstract class AbstractBrokerSelfRegistrationTest extends AbstractOrganiz
|
|||
idpRep.getConfig().remove(OrganizationModel.ORGANIZATION_DOMAIN_ATTRIBUTE);
|
||||
testRealm().identityProviders().get(idpRep.getAlias()).update(idpRep);
|
||||
|
||||
// create a user to the provider realm using a email that does not share the same domain as the org
|
||||
// create a user to the provider realm using an email that does not share the same domain as the org
|
||||
UserRepresentation user = UserBuilder.create()
|
||||
.username("user")
|
||||
.email("user@different.org")
|
||||
|
@ -660,7 +660,7 @@ public abstract class AbstractBrokerSelfRegistrationTest extends AbstractOrganiz
|
|||
idpRep.getConfig().remove(OrganizationModel.ORGANIZATION_DOMAIN_ATTRIBUTE);
|
||||
testRealm().identityProviders().get(idpRep.getAlias()).update(idpRep);
|
||||
|
||||
// create a user to the provider realm using a email that does not share the same domain as the org
|
||||
// create a user to the provider realm using an email that does not share the same domain as the org
|
||||
UserRepresentation user = UserBuilder.create()
|
||||
.username("user")
|
||||
.email("user@different.org")
|
||||
|
|
Loading…
Reference in a new issue