diff options
author | James Lal <james@lightsofapollo.com> | 2013-05-02 14:02:07 -0700 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2013-05-02 14:02:07 -0700 |
commit | c81e925aa6dada192db75dccd4287ab1e9e09ab2 (patch) | |
tree | 5e7e4ee8dcc3cb01d48b4b88ab14039bc50cf034 /lib/caldav/http/index.js | |
parent | 9b6e2c616154f2c20fe6272dca083868c02f98f4 (diff) | |
parent | 8857b80ae0dd7be54d0d731000c9f8edb0434336 (diff) | |
download | jsCalDAV-c81e925aa6dada192db75dccd4287ab1e9e09ab2.tar.gz |
Merge pull request #14 from lightsofapollo/oauth
Bug 867747 - Google OAuth implementation
Diffstat (limited to 'lib/caldav/http/index.js')
-rw-r--r-- | lib/caldav/http/index.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/caldav/http/index.js b/lib/caldav/http/index.js new file mode 100644 index 0000000..dde939d --- /dev/null +++ b/lib/caldav/http/index.js @@ -0,0 +1,14 @@ +(function(module, ns) { + + module.exports = { + BasicAuth: ns.require('http/basic_auth'), + OAuth2: ns.require('http/oauth2') + }; + +}.apply( + this, + (this.Caldav) ? + [Caldav('http'), Caldav] : + [module, require('../caldav')] +)); + |