Giter Site home page Giter Site logo

Comments (4)

techloverparveen avatar techloverparveen commented on May 18, 2024 1

Thanks JKHeadley for your quick response. I really appreciate that.
Thanks again.:)

from rest-hapi.

JKHeadley avatar JKHeadley commented on May 18, 2024

Hi @parveen-oodles, this is actually a feature that is being worked on and hopefully will be done soon.

For now, you can omit the generated create endpoint and replace it with your own in order to access the request object.

The resulting code would look something like this:

'use strict';

const RestHapi = require('rest-hapi');

module.exports = function (server, mongoose, logger) {
    server.route({
      method: 'POST',
      path: '/pathName',
      config: {
        handler: function(request, reply) { 
          /* modify request.payload here and access auth info through request.auth.credentials */

          const Model = mongoose.model('modelName');
          return RestHapi.create(Model, request.payload, logger)
            .then(function (result) {
              return reply(result);
            })
            .catch(function (error) {
              return reply(error);
            });
        },
        tags: ['api'],
        plugins: {
          'hapi-swagger': {}
        }
      }
    });
};

from rest-hapi.

JKHeadley avatar JKHeadley commented on May 18, 2024

from rest-hapi.

techloverparveen avatar techloverparveen commented on May 18, 2024

Thanks JKHeadley, yes i have resolved my issue, that was due to the standalone endpoint wasn't in the separate file. I have another query regarding Rest-Hapi would appreciate if you please tell me that via association there are some more API created for that particular model, but as Rest-Hapi create API for them is that also expose some internal methods to do the same work via server side i mean like there are method like restHapi.create(modelName, data, log), that will do the same work that the create API endpoint do. So like this is rest-hapi also expose some methods at server side for association API made internally by that.

for example :- /building/{ownerId}/occupant.

(This API is generated by rest Hapi Association), so how can i do the same in server side is there any method expose at server side like this :-

restHapi.create(building,ownerId,data,log)

Thanks

from rest-hapi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.