Skip to content

Authentication route is not displaying in feathers swagger #71

@justraman

Description

@justraman

After using this library, the docs have only model routes, authentication route is completely invisible.

app.configure(sequelize);



// Configure other middleware (see `middleware/index.js`)
app.configure(middleware);
app.configure(authentication);



app.configure(sequelizeToJsonSchemas as any);

app.configure(
    swagger({
      openApiVersion: 3,
      uiIndex: true,
      docsPath: '/docs',
      docsJsonPath: '/docs/schema',
      specs: {
        info: {
          title: 'XYZ',
          description: 'Documentaition by [@justraman](https://github.com/justraman)',
          version: '0.0.1',
        },
      },
      defaults: {
        schemasGenerator(service, model, modelName) {
          const modelSchema = app
            .get('jsonSchemaManager')
            .generate(
              service.options.Model,
              app.get('openApi3Strategy'),
              service.options.Model.options.jsonSchema,
            );
  
          return {
            [model]: modelSchema,
            [`${model}_list`]: {
              title: `${modelName} list`,
              type: 'array',
              items: { $ref: `#/components/schemas/${model}` },
            },
          };
        },
      },
    }),
  )
// Set up our services (see `services/index.js`)
app.configure(services);



// Set up event channels (see channels.js)
app.configure(channels);

// Configure a middleware for 404s and the error handler
app.use(express.notFound());
app.use(express.errorHandler({ logger } as any));

app.hooks(appHooks);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions