Skip to content

Commit 93a5910

Browse files
committed
dropped unused actions and mqqt
1 parent 057ef73 commit 93a5910

7 files changed

+13
-88
lines changed

glued/Config/Pgsql/20240331214621_messages.sql

-24
This file was deleted.

glued/Config/Pgsql/20240331214627_valid_response_cache.sql

-17
This file was deleted.

glued/Config/Pgsql/20240331214653_queues.sql

-19
This file was deleted.

glued/Config/Pgsql/20240421162451_queue_subscribers.sql

-15
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
-- migrate:up
2+
3+
DROP TABLE IF EXISTS glued.if__mq_queue_subscribers CASCADE;
4+
DROP TABLE IF EXISTS glued.if__mq_queues CASCADE;
5+
DROP TABLE IF EXISTS glued.if__actions_valid_response_cache CASCADE;
6+
DROP TABLE IF EXISTS glued.if__mq_messages CASCADE;
7+
DROP TABLE IF EXISTS glued.if__actions CASCADE;
8+
9+
10+
-- migrate:down
11+

glued/Config/openapi.yaml

-12
Original file line numberDiff line numberDiff line change
@@ -101,18 +101,6 @@ paths:
101101
'200':
102102
description: Ok
103103

104-
/v1/actions:
105-
x-glued-pathname: be_if_actions
106-
x-glued-provides: service
107-
get:
108-
x-glued-method: Glued\Controllers\IfController:getActions
109-
summary: Get actions
110-
description: Interface queue
111-
operationId: IfGetActions
112-
responses:
113-
'200':
114-
description: Ok
115-
116104
components:
117105
schemas:
118106
IfDeployment:

glued/Controllers/IfController.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ public function getDeployment(Request $request, Response $response, array $args
8484
return $response->withJson($data);
8585
}
8686

87+
/*
8788
public function getActions(Request $request, Response $response, array $args = []): Response
8889
{
8990
$db = new Sql($this->pg, 'if__actions');
@@ -97,7 +98,7 @@ public function getActions(Request $request, Response $response, array $args = [
9798
//$db->stmt->debugDumpParams();
9899
return $response->withJson($data);
99100
}
100-
101+
*/
101102
/**
102103
* Abstract method to get data from upstream (must be implemented in child classes).
103104
* @return array

0 commit comments

Comments
 (0)