File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,16 @@ var plugins = [
3636 'logout' ,
3737 'search' ,
3838 'get' ,
39- 'post'
39+ 'post' ,
40+ 'put' ,
41+ 'delete' ,
42+ 'report' ,
43+ 'count' ,
44+ 'copy' ,
45+ 'upload' ,
46+ 'execute' ,
47+ 'namedQuery' ,
48+ 'metadata'
4049] ;
4150for ( var i = 0 ; i < plugins . length ; ++ i ) {
4251 require ( './plugins/' + plugins [ i ] ) ( Api ) ;
Original file line number Diff line number Diff line change 1+ var Api = require ( './../Api' ) ;
2+
3+ module . exports = function ( Api ) {
4+ /**
5+ *
6+ */
7+ Api . prototype . copy = function ( ) {
8+ throw new Error ( 'Not implemented' )
9+ } ;
10+ } ;
Original file line number Diff line number Diff line change 1+ var Api = require ( './../Api' ) ;
2+
3+ module . exports = function ( Api ) {
4+ /**
5+ *
6+ */
7+ Api . prototype . count = function ( ) {
8+ throw new Error ( 'Not implemented' )
9+ } ;
10+ } ;
Original file line number Diff line number Diff line change 1+ var Api = require ( './../Api' ) ;
2+
3+ module . exports = function ( Api ) {
4+ /**
5+ *
6+ */
7+ Api . prototype . delete = function ( ) {
8+ throw new Error ( 'Not implemented' )
9+ } ;
10+ } ;
Original file line number Diff line number Diff line change 1+ var Api = require ( './../Api' ) ;
2+
3+ module . exports = function ( Api ) {
4+ /**
5+ *
6+ */
7+ Api . prototype . execute = function ( ) {
8+ throw new Error ( 'Not implemented' )
9+ } ;
10+ } ;
Original file line number Diff line number Diff line change 1+ var Api = require ( './../Api' ) ;
2+
3+ module . exports = function ( Api ) {
4+ /**
5+ *
6+ */
7+ Api . prototype . metadata = function ( ) {
8+ throw new Error ( 'Not implemented' )
9+ } ;
10+ } ;
Original file line number Diff line number Diff line change 1+ var Api = require ( './../Api' ) ;
2+
3+ module . exports = function ( Api ) {
4+ /**
5+ *
6+ */
7+ Api . prototype . namedQuery = function ( ) {
8+ throw new Error ( 'Not implemented' )
9+ } ;
10+ } ;
Original file line number Diff line number Diff line change 1+ var Api = require ( './../Api' ) ;
2+
3+ module . exports = function ( Api ) {
4+ /**
5+ *
6+ */
7+ Api . prototype . put = function ( ) {
8+ throw new Error ( 'Not implemented' )
9+ } ;
10+ } ;
Original file line number Diff line number Diff line change 1+ var Api = require ( './../Api' ) ;
2+
3+ module . exports = function ( Api ) {
4+ /**
5+ *
6+ */
7+ Api . prototype . report = function ( ) {
8+ throw new Error ( 'Not implemented' )
9+ } ;
10+ } ;
You can’t perform that action at this time.
0 commit comments