mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-21 22:51:09 +02:00
20 lines
701 B
JavaScript
20 lines
701 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { Response } from 'miragejs';
|
|
import modifyPassthroughResponse from '../helpers/modify-passthrough-response';
|
|
|
|
/*
|
|
These are mocked responses to mimic what we get from the server
|
|
when within a chrooted listener (assuming the namespace exists)
|
|
*/
|
|
export default function (server) {
|
|
server.get('sys/health', () => new Response(400, {}, { errors: ['unsupported path'] }));
|
|
server.get('sys/replication/status', () => new Response(400, {}, { errors: ['unsupported path'] }));
|
|
server.get('sys/internal/ui/resultant-acl', (schema, req) =>
|
|
modifyPassthroughResponse(req, { chroot_namespace: 'my-ns' })
|
|
);
|
|
}
|