Last active
July 4, 2016 10:17
-
-
Save frankrousseau/4dada7607d8c01c41bd10ca9553b8503 to your computer and use it in GitHub Desktop.
Digital Ocean Connector (first step)
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
var baseKonnector = require('../lib/base_konnector'); | |
var Bill = require('../models/bill'); | |
var connector = module.exports = baseKonnector.createNew({ | |
name: "Do", | |
fields: { | |
login: "text", | |
password: "password", | |
folderPath: "folder" | |
}, | |
models: [Bill], | |
fetchOperations: [ | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment