Revert "Extract $options on get attributes list"

This reverts commit 0ef6f32a10.
This commit is contained in:
Jake Barnby
2023-03-27 12:18:47 +13:00
parent 9ac08b496b
commit 64ee75e80d
2 changed files with 0 additions and 22 deletions
-7
View File
@@ -1605,13 +1605,6 @@ App::get('/v1/databases/:databaseId/collections/:collectionId/attributes')
$attributes = $collection->getAttribute('attributes');
foreach ($attributes as &$attribute) {
$options = $attribute->getAttribute('options', []);
foreach ($options as $key => $option) {
$attribute->setAttribute($key, $option);
}
}
$response->dynamic(new Document([
'total' => \count($attributes),
'attributes' => $attributes
@@ -3277,21 +3277,6 @@ trait DatabasesBase
$this->assertEquals('relationship', $relation['body']['type']);
$this->assertEquals('processing', $relation['body']['status']);
$attributes = $this->client->call(Client::METHOD_GET, '/databases/' . $databaseId . '/collections/' . $person['body']['$id'] . '/attributes', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $this->getProject()['$id'],
'x-appwrite-key' => $this->getProject()['apiKey']
]));
$this->assertEquals(200, $attributes['headers']['status-code']);
$this->assertEquals(2, $attributes['body']['total']);
$attributes = $attributes['body']['attributes'];
$this->assertEquals('library', $attributes[1]['relatedCollection']);
$this->assertEquals('oneToOne', $attributes[1]['relationType']);
$this->assertEquals(false, $attributes[1]['twoWay']);
$this->assertEquals('person', $attributes[1]['twoWayKey']);
$this->assertEquals(Database::RELATION_MUTATE_CASCADE, $attributes[1]['onDelete']);
$attribute = $this->client->call(Client::METHOD_GET, "/databases/{$databaseId}/collections/{$person['body']['$id']}/attributes/library", array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $this->getProject()['$id'],