Michael Shapiro
Michael Shapiro
It would be great if the models could be in namespaces. If all the models could be in a top-level namespace (eg a module called DB), and then for each...
How do I set the top level namespace with a configuration option? And, yes, I mean a second level namespace for the schema. --- From: Boško Ivaniševiæ [[email protected]] Sent: Wednesday,...
OK, I understand. Do you think the second-level namespace is possible? --- From: Boško Ivaniševiæ [[email protected]] Sent: Wednesday, May 22, 2013 12:01 PM To: bosko/rmre Cc: Shapiro, Michael Subject: {Disarmed}...
I coded some models using modules. If I put the models in the correct folders with the correct names, it works _app/models/db/x/job.rb_ ``` module DB module X class Job <...
bosko, jonarrien, I suspect that joanrrien's tables are in a schema that is not in the Postgres search path. Unless the search_path is explicitly set, the search_path defaults to ,public....
I tried this: ``` template = { "info": { "title": "My API" }, "specs_route": "/api/" } swagger = Swagger(app, template=template) ``` But the route is still /apidocs