tdruez
tdruez
PR submitted as https://github.com/django-notifications/django-notifications/pull/267
- [x] Fix the labels and wording case consistency
Hi @aalexanderr this looks great. I see it's still labeled as WIP, anything else you planned to add?
Hi Ben > I successfully scaned a open repository in github Well done! > 1 How can I scan a repository where authorisation is required. What kind of authorization? We...
Hi @ddmesh I've updated the default settings to not enable the Authentication system in the API. You should be able to access http://localhost/api/ without the credentials using the latest code...
@ddmesh > Can you tell me where I can enable the authentication again, because I intend to use it later in an environment where I need authentication. Sure, see https://github.com/nexB/scancode.io/commit/ebd9fe31c33f51c1b348234e97e2b54ef2dfc3f0...
> About DEFAULT_PERMISSION_CLASSES, should I revert this settings or is there a "user-config" file that I have to use to overwrite this settings, when I need to enable authorization again?...
> How can I then add for instance two pipelines via REST API and later how do I start executing? ``` api_url="http://localhost/api/projects/9cdaa9be-e48c-4265-b94e-5457784df60f/add_pipeline/" headers="Content-Type: application/json" curl -X POST "$api_url" -H "$headers"...
> When starting a pipeline with curl, you should use GET instead of POST (post ist not supported, but GET is working). You are right, this action is only enabled...
> Is there a way to upload inputs if a project already exists? Not yet through the REST API, we need to add a new action for this. > Whatfor...