Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

22 changes: 0 additions & 22 deletions openapi-src/V2/paths/_index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,28 +266,6 @@
description: OK
schema:
$ref: '../definitions/_index.yml#/V2OrganisationRead'
/v2/organisations/listing:
get:
summary: Get a list of organisations names and uuid
operationId: v2-get-organisations-listing
tags:
- V2 Project Developer
- V2 Organisations
responses:
'200':
description: OK
schema:
type: object
properties:
data:
type: array
items:
$ref: '../definitions/_index.yml#/V2GenericList'
parameters:
- type: string
in: query
name: search
description: search term to use on the collection
/v2/organisations/join-existing:
post:
summary: Post a request to join an existing organisation
Expand Down
38 changes: 0 additions & 38 deletions resources/docs/swagger-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23603,44 +23603,6 @@ paths:
description: 'this is a list of key value pairs eg slug: name '
items:
type: string
/v2/organisations/listing:
get:
summary: Get a list of organisations names and uuid
operationId: v2-get-organisations-listing
tags:
- V2 Project Developer
- V2 Organisations
responses:
'200':
description: OK
schema:
type: object
properties:
data:
type: array
items:
title: V2GenericList
type: object
properties:
uuid:
type: string
name:
type: string
input_type:
type: string
model_key:
type: string
option_list_key:
type: string
options:
type: array
items:
type: string
parameters:
- type: string
in: query
name: search
description: search term to use on the collection
/v2/organisations/join-existing:
post:
summary: Post a request to join an existing organisation
Expand Down
2 changes: 0 additions & 2 deletions routes/api_v2.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
use App\Http\Controllers\V2\Organisations\OrganisationApprovedUsersController;
use App\Http\Controllers\V2\Organisations\OrganisationApproveUserController;
use App\Http\Controllers\V2\Organisations\OrganisationController;
use App\Http\Controllers\V2\Organisations\OrganisationListingController;
use App\Http\Controllers\V2\Organisations\OrganisationListRequestedUsersController;
use App\Http\Controllers\V2\Organisations\OrganisationRejectUserController;
use App\Http\Controllers\V2\OwnershipStake\DeleteOwnershipStakeController;
Expand Down Expand Up @@ -218,7 +217,6 @@

/** NON ADMIN ROUTES */
Route::prefix('organisations')->group(function () {
Route::get('listing', OrganisationListingController::class);
Route::post('join-existing', JoinExistingOrganisationController::class);
Route::put('approve-user', OrganisationApproveUserController::class);
Route::put('reject-user', OrganisationRejectUserController::class);
Expand Down
56 changes: 0 additions & 56 deletions tests/V2/Organisation/OrganisationListingControllerTest.php

This file was deleted.

Loading