Skip to content

Fix broken urls in readme #380

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

Merged
merged 1 commit into from
Apr 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,15 +157,15 @@ export default class ChangesetComponent extends Component {

## Validator API

`ember-changeset-validations` utilizes [`ember-validators`](https://github.com/rwwagner90/ember-validators) as a core set of validators.
`ember-changeset-validations` utilizes [`ember-validators`](https://github.com/adopted-ember-addons/ember-validators) as a core set of validators.

All validators take a [custom message option](#custom-validation-messages).

#### `presence`

Validates presence/absence of a value.

👉 [All Options](https://rwwagner90.github.io/ember-validators/docs/classes/Presence.html#method_validate)
👉 [All Options](https://adopted-ember-addons.github.io/ember-validators/docs/classes/Presence.html#method_validate)

```js
{
Expand Down Expand Up @@ -197,7 +197,7 @@ Only validates for presence if any of the other values are present

Validates the length of a `String` or an `Array`.

👉 [All Options](https://rwwagner90.github.io/ember-validators/docs/classes/Length.html#method_validate)
👉 [All Options](https://adopted-ember-addons.github.io/ember-validators/docs/classes/Length.html#method_validate)

```js
{
Expand Down Expand Up @@ -232,7 +232,7 @@ This API accepts valid Date objects or a Date in milliseconds since Jan 1 1970,

Validates various properties of a number.

👉 [All Options](https://rwwagner90.github.io/ember-validators/docs/classes/Number.html#method_validate)
👉 [All Options](https://adopted-ember-addons.github.io/ember-validators/docs/classes/Number.html#method_validate)

```js
{
Expand All @@ -256,7 +256,7 @@ Validates various properties of a number.

Validates that a value is a member of some list or range.

👉 [All Options](https://rwwagner90.github.io/ember-validators/docs/classes/Inclusion.html#method_validate)
👉 [All Options](https://adopted-ember-addons.github.io/ember-validators/docs/classes/Inclusion.html#method_validate)

```js
{
Expand All @@ -272,7 +272,7 @@ Validates that a value is a member of some list or range.

Validates that a value is a not member of some list or range.

👉 [All Options](https://rwwagner90.github.io/ember-validators/docs/classes/Exclusion.html#method_validate)
👉 [All Options](https://adopted-ember-addons.github.io/ember-validators/docs/classes/Exclusion.html#method_validate)

```js
{
Expand All @@ -288,7 +288,7 @@ Validates that a value is a not member of some list or range.

Validates a `String` based on a regular expression.

👉 [All Options](https://rwwagner90.github.io/ember-validators/docs/classes/Format.html#method_validate)
👉 [All Options](https://adopted-ember-addons.github.io/ember-validators/docs/classes/Format.html#method_validate)

```js
{
Expand All @@ -307,7 +307,7 @@ Validates a `String` based on a regular expression.

Validates that a field has the same value as another.

👉 [All Options](https://rwwagner90.github.io/ember-validators/docs/classes/Confirmation.html#method_validate)
👉 [All Options](https://adopted-ember-addons.github.io/ember-validators/docs/classes/Confirmation.html#method_validate)

```js
{
Expand Down Expand Up @@ -602,7 +602,7 @@ We're grateful to these wonderful contributors who've contributed to `ember-chan
<a href="https://github.com/michaellee"><img src="https://avatars1.githubusercontent.com/u/1329644?v=4" title="michaellee" width="80" height="80"></a>
<a href="https://github.com/cibernox"><img src="https://avatars2.githubusercontent.com/u/265339?v=4" title="cibernox" width="80" height="80"></a>
<a href="https://github.com/nickschot"><img src="https://avatars1.githubusercontent.com/u/334789?v=4" title="nickschot" width="80" height="80"></a>
<a href="https://github.com/rwwagner90"><img src="https://avatars2.githubusercontent.com/u/575938?v=4" title="rwwagner90" width="80" height="80"></a>
<a href="https://github.com/adopted-ember-addons"><img src="https://avatars2.githubusercontent.com/u/575938?v=4" title="adopted-ember-addons" width="80" height="80"></a>
<a href="https://github.com/patrickberkeley"><img src="https://avatars0.githubusercontent.com/u/8364?v=4" title="patrickberkeley" width="80" height="80"></a>
<a href="https://github.com/scottkidder"><img src="https://avatars1.githubusercontent.com/u/136984?v=4" title="scottkidder" width="80" height="80"></a>
<a href="https://github.com/simonihmig"><img src="https://avatars0.githubusercontent.com/u/1325249?v=4" title="simonihmig" width="80" height="80"></a>
Expand Down
Loading