Class BooleanTransform

public

The BooleanTransform class is used to serialize and deserialize boolean attributes on Ember Data record objects. This transform is used when boolean is passed as the type parameter to the attr function.

Usage

app/models/user.js
1
2
3
4
5
import Model, { attr } from '@ember-data/model';

export default class UserModel extends Model {
  @attr('boolean', { allowNull: true }) wantsWeeklyEmail;
}