-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
394 changed files
with
7,367 additions
and
1,670 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.svg -diff linguist-generated=true | ||
*.png -diff linguist-generated=true | ||
*.jpg -diff linguist-generated=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,15 @@ | ||
# see: https://doc.mergify.io/configuration.html | ||
|
||
pull_request_rules: | ||
- name: automatic strict merge on CI success and review | ||
conditions: | ||
- base~=^develop$|^release/ # only for PRs targeting develop or release branches | ||
- status-success=continuous-integration/travis-ci/pr # must pass travis | ||
- "#approved-reviews-by>0" # at least one approval from someone with write permission | ||
- "#changes-requested-reviews-by=0" # no changes requested | ||
- label!=no merge # use this label to prevent automatic merge | ||
- -title~=\b[Ww][Ii][Pp]\b | ||
actions: | ||
merge: | ||
method: merge # merge with a merge commit | ||
strict: smart # make sure PR is up-to-date before merging (but queue updates) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import OsfAdapter from './osf-adapter'; | ||
|
||
export default class UserEmailAdapter extends OsfAdapter { | ||
parentRelationship = 'user'; | ||
} | ||
|
||
declare module 'ember-data' { | ||
interface AdapterRegistry { | ||
'user-email': UserEmailAdapter; | ||
} | ||
} |
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
Oops, something went wrong.