Skip to content

Commit

Permalink
docs(entity): add additional docs
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelfernandez committed May 23, 2021
1 parent e25a280 commit 4f29830
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions projects/ngrx.io/content/guide/entity/adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ import { Update, EntityMap, EntityMapOne, Predicate } from '@ngrx/entity';
import { User } from '../models/user.model';

export const loadUsers = createAction('[User/API] Load Users', props<{ users: User[] }>());
export const setUsers = createAction('[User/API] Set Users', props<{ users: User[] }>());
export const addUser = createAction('[User/API] Add User', props<{ user: User }>());
export const setUser = createAction('[User/API] Set User', props<{ user: User }>());
export const upsertUser = createAction('[User/API] Upsert User', props<{ user: User }>());
Expand Down

0 comments on commit 4f29830

Please sign in to comment.