Skip to content

Commit

Permalink
[docs] Support old site's users.html (OpenAPITools#5297)
Browse files Browse the repository at this point in the history
Our Docusaurus 1.x site had a users.html page. This adds a redirect from
that location to /users
  • Loading branch information
jimschubert authored and MikailBag committed Mar 23, 2020
1 parent 406db78 commit 751a4cd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions website/src/pages/users.html.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';
import {Redirect} from '@docusaurus/router';
function Home() {
return <Redirect to="/users" />;
}

export default Home;

0 comments on commit 751a4cd

Please sign in to comment.