Skip to content

Commit

Permalink
cassproject/cass-profile#18 - Negative assertions from the VLRC now h…
Browse files Browse the repository at this point in the history
…ave confidence.
  • Loading branch information
Lomilar committed Jan 4, 2019
1 parent 29b2406 commit f316946
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/topicArea.js
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,8 @@ Vue.component('competency', {
a.setCompetency(EcRemoteLinkedData.trimVersionFromUrl(me.uri));
a.setAssertionDate(Date.now()); //UTC Milliseconds
a.setExpirationDate(Date.now() + 1000 * 60 * 60 * 24 * 365); //UTC Milliseconds, 365 days in the future.
a.setNegative(true); //This is an assertion that an individual *can* do something, not that they *cannot*.
a.setNegative(true); //This is an assertion that an individual *cannot* do something, not that they *can*.
a.setConfidence(1.0);
EcRepository.save(a, me.getCompetence, console.error);
if (assertionHistory[app.subject] != null)
assertionHistory[app.subject].addAssertion(a);
Expand Down

0 comments on commit f316946

Please sign in to comment.