This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Understanding Emotions", | |
"name": "understandingEmotions", | |
"content_type": "mixed", | |
"status": "completed", | |
"group": "lesson", | |
"instructions": "This lessons gives you the basic concepts of emotions.", | |
"meta_data": { | |
"description": "Understanding our emotions helps us lorem ipsum dolor sit amet. This lesson illustrates the importance of lorem ipsum in our amet quan pungis", | |
"lessonNumber": 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"provider_id": "8460c914-21c8-422c-ac94-a53e4bf59719", | |
"curriculum": [ | |
{ | |
"session": 1, | |
"contents": [ | |
{ | |
"name": "introToCBT", | |
"content_type": "lesson", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Activity Log", | |
"tags": [ | |
"general" | |
], | |
"name": "activityLog", | |
"content_type": "form", | |
"meta_data": { | |
"schema": { | |
"properties": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Thought record", | |
"content_type": "form", | |
"name": "thoughtRecord", | |
"description": "A thought record sheet", | |
"tags": [ | |
"anxiety" | |
], | |
"meta_data": { | |
"schema": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Check In", | |
"name": "checkIn", | |
"content_type": "form", | |
"description": "This is the Check In form", | |
"tags": ["general"], | |
"meta_data": { | |
"schema": { | |
"type": "object", | |
"properties": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function autoExpire() { | |
var asset; | |
var user; | |
try { | |
asset = DocumentApp.getActiveDocument(); | |
user = Session.getActiveUser(); | |
// Removes the user from the list of editors for the document. | |
asset.removeEditor(user); | |
} catch (e) { |