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
### Keybase proof | |
I hereby claim: | |
* I am mickaelramanitrera on github. | |
* I am rammanitrera (https://keybase.io/rammanitrera) on keybase. | |
* I have a public key ASAGYT5qtjHI3GBVhftHQsk8xIJtGiX5S4ty6M-jcsSBCQo | |
To claim this, I am signing this object: |
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
{ | |
"allowed_routes" : [ | |
"#/app/projects/:id", | |
"#/app/projects/test2", | |
"#/app/projects/test1", | |
"#/app/projects/test" | |
], | |
"allowed_components" : { | |
"header" : "HeaderComponent" | |
}, |
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
const podio = new PodioJs.api({ | |
authType: "password", | |
clientId: process.env.PODIO_CLIENT_ID, | |
clientSecret: process.env.PODIO_CLIENT_SECRET, | |
}, { | |
enablePushService: true, | |
}); | |
podio.authenticateWithCredentials(process.env.PODIO_USER_EMAIL, process.env.PODIO_USER_PWD, (err) => { | |
if (err) { console.log("Error", err); } |