Skip to content
This repository was archived by the owner on Dec 14, 2020. It is now read-only.

Commit a13ebf7

Browse files
committed
fix(Verbs): Corrects display for assigned verb.
1 parent 990619e commit a13ebf7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/statementConstants/verbs.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ export const createVerb = (id: string, display: string): Verb => {
1212
export const accessed = createVerb('http://activitystrea.ms/schema/1.0/access', 'accessed');
1313
export const activated = createVerb('https://w3id.org/xapi/dod-isd/verbs/activated', 'activated');
1414
export const answered = createVerb('http://adlnet.gov/expapi/verbs/answered', 'answered');
15-
export const assigned = createVerb('https://w3id.org/xapi/acrossx/verbs/was-assigned', 'assigned');
15+
export const assigned = createVerb(
16+
'https://w3id.org/xapi/acrossx/verbs/was-assigned',
17+
'was assigned to',
18+
);
1619
export const attempted = createVerb('http://adlnet.gov/expapi/verbs/attempted', 'attempted');
1720
export const attended = createVerb('http://activitystrea.ms/schema/1.0/attend', 'attended');
1821
export const bookmarked = createVerb('http://id.tincanapi.com/verb/bookmarked', 'bookmarked');

0 commit comments

Comments
 (0)