-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #377 from brown-ccv/feat-v3.3
feat: Honeycomb v3.3.0
- Loading branch information
Showing
78 changed files
with
9,540 additions
and
14,366 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
rules_version = '2'; | ||
service cloud.firestore { | ||
match /databases/{database}/documents { | ||
// participantID must be in the registered_participants array in the registered_studies/{studyID} document | ||
match /participant_responses/{studyID}/participants/{participantID} { | ||
allow create, read: | ||
if participantID in get(/databases/$(database)/documents/registered_studies/$(studyID)).data.registered_participants; | ||
match /participant_responses/{studyID}/participants/{participantID} { | ||
allow create, read: | ||
if | ||
// Allows any combination of studyID and participantID to be created in Firebase | ||
true | ||
// participantID must be in the registered_participants array in the registered_studies/{studyID} document | ||
// participantID in get(/databases/$(database)/documents/registered_studies/$(studyID)).data.registered_participants; | ||
|
||
// experimentID must be in the data subcollection | ||
match /data/{experimentID} { | ||
allow create, read: if true | ||
// experimentID must be in the data subcollection | ||
match /data/{experimentID} { | ||
allow create, read: if true | ||
|
||
// trialID must be in the trials subcollection | ||
match /trials/{trialID} { | ||
allow create, read: if true | ||
} | ||
// trialID must be in the trials subcollection | ||
match /trials/{trialID} { | ||
allow create, read: if true | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/** | ||
* Configuration file for Electron Forge | ||
*/ | ||
module.exports = { | ||
packagerConfig: { | ||
asar: true, | ||
icon: "assets/icons/icon", | ||
}, | ||
makers: [ | ||
{ | ||
// zip files | ||
name: "@electron-forge/maker-zip", | ||
}, | ||
{ | ||
// Linux Distribution | ||
name: "@electron-forge/maker-deb", | ||
config: { | ||
options: { | ||
icon: "assets/icons/icon.png", | ||
}, | ||
}, | ||
}, | ||
{ | ||
// Mac Distribution | ||
name: "@electron-forge/maker-dmg", | ||
config: { | ||
icon: "assets/icons/icon.icns", | ||
overwrite: true, | ||
}, | ||
}, | ||
{ | ||
// Windows Distribution | ||
name: "@electron-forge/maker-squirrel", | ||
config: { | ||
iconUrl: "https://raw.githubusercontent.com/brown-ccv/honeycomb/main/assets/icons/icon.ico", | ||
setupIcon: "assets/icons/icon.ico", | ||
}, | ||
}, | ||
], | ||
plugins: [ | ||
{ | ||
name: "@electron-forge/plugin-auto-unpack-natives", | ||
config: {}, | ||
}, | ||
], | ||
}; |
Oops, something went wrong.