Skip to content

Commit 847ccf8

Browse files
committed
Move the remaining mentions of matrix-org to element-hq
1 parent 76367ff commit 847ccf8

File tree

14 files changed

+22
-22
lines changed

14 files changed

+22
-22
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Thank you for taking the time to contribute to Matrix!
44

55
This is the repository for MAS (Matrix Authentication Service), an OAuth 2.0 and OpenID Provider server for Matrix.
66

7-
Please see the [contributors' guide](https://matrix-org.github.io/matrix-authentication-service/development/contributing.html) in our rendered documentation.
7+
Please see the [contributors' guide](https://element-hq.github.io/matrix-authentication-service/development/contributing.html) in our rendered documentation.
88

99
## Sign off
1010

@@ -58,4 +58,4 @@ If you agree to this for your contribution, then all that's needed is to include
5858
Signed-off-by: Your Name <[email protected]>
5959
```
6060

61-
Git allows you to add this signoff automatically when using the `-s` flag to `git commit`, which uses the name and email set in your `user.name` and `user.email` git configs.
61+
Git allows you to add this signoff automatically when using the `-s` flag to `git commit`, which uses the name and email set in your `user.name` and `user.email` git configs.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ package.version = "0.11.0"
99
package.license = "AGPL-3.0-only"
1010
package.authors = ["Quentin Gliech <[email protected]>"]
1111
package.edition = "2021"
12-
package.homepage = "https://matrix-org.github.io/matrix-authentication-service/"
13-
package.repository = "https://github.com/matrix-org/matrix-authentication-service/"
12+
package.homepage = "https://element-hq.github.io/matrix-authentication-service/"
13+
package.repository = "https://github.com/element-hq/matrix-authentication-service/"
1414

1515
[workspace.lints.rust]
1616
unsafe_code = "forbid"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MAS (Matrix Authentication Service) is an OAuth 2.0 and OpenID Provider server f
44

55
It has been created to support the migration of Matrix to an OpenID Connect (OIDC) based authentication layer as per [MSC3861](https://github.com/matrix-org/matrix-doc/pull/3861).
66

7-
See the [Documentation](https://matrix-org.github.io/matrix-authentication-service/index.html) for information on installation and use.
7+
See the [Documentation](https://element-hq.github.io/matrix-authentication-service/index.html) for information on installation and use.
88

99
You can learn more about Matrix and OIDC at [areweoidcyet.com](https://areweoidcyet.com/).
1010

@@ -17,7 +17,7 @@ You can learn more about Matrix and OIDC at [areweoidcyet.com](https://areweoidc
1717
- Authentication methods:
1818
- ✅ Upstream OIDC
1919
- 🚧 Local password
20-
- ‼️ [Application Services login](https://matrix-org.github.io/matrix-authentication-service/as-login.html) (**Encrypted bridges**)
20+
- ‼️ [Application Services login](https://element-hq.github.io/matrix-authentication-service/as-login.html) (**Encrypted bridges**)
2121
- Migration support
2222
- ✅ Compatibility layer for legacy Matrix authentication
2323
- ✅ Advisor on migration readiness

book.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ build-dir = "target/book"
1313

1414
[output.html]
1515
# The URL visitors will be directed to when they try to edit a page
16-
edit-url-template = "https://github.com/matrix-org/matrix-authentication-service/edit/main/{path}"
16+
edit-url-template = "https://github.com/element-hq/matrix-authentication-service/edit/main/{path}"
1717

1818
# The source code URL of the repository
19-
git-repository-url = "https://github.com/matrix-org/matrix-authentication-service"
19+
git-repository-url = "https://github.com/element-hq/matrix-authentication-service"
2020

2121
# The path that the docs are hosted on
2222
site-url = "/matrix-authentication-service/"

crates/cli/src/commands/doctor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use tracing::{error, info, info_span, warn};
2222
use url::{Host, Url};
2323

2424
/// Base URL for the human-readable documentation
25-
const DOCS_BASE: &str = "https://matrix-org.github.io/matrix-authentication-service";
25+
const DOCS_BASE: &str = "https://element-hq.github.io/matrix-authentication-service";
2626

2727
#[derive(Parser, Debug)]
2828
pub(super) struct Options {}

crates/oauth2-types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//!
1111
//! [OAuth 2.0]: https://oauth.net/2/
1212
//! [OpenID Connect]: https://openid.net/connect/
13-
//! [Matrix Authentication Service]: https://github.com/matrix-org/matrix-authentication-service
13+
//! [Matrix Authentication Service]: https://github.com/element-hq/matrix-authentication-service
1414
1515
#![deny(missing_docs)]
1616
#![allow(clippy::module_name_repetitions)]

crates/oidc-client/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
//!
4242
//! [OpenID Connect]: https://openid.net/connect/
4343
//! [Matrix]: https://matrix.org/
44-
//! [Matrix Authentication Service]: https://github.com/matrix-org/matrix-authentication-service
44+
//! [Matrix Authentication Service]: https://github.com/element-hq/matrix-authentication-service
4545
//! [MSC3861]: https://github.com/matrix-org/matrix-spec-proposals/pull/3861
4646
//! [OAuth 2.0]: https://oauth.net/2/
4747

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MAS is an OAuth 2.0 and OpenID Provider server for Matrix.
66
It has been created to support the migration of Matrix to an OpenID Connect (OIDC) based authentication layer as per [MSC3861](https://github.com/matrix-org/matrix-doc/pull/3861).
77

88
The documentation itself is built using [mdBook](https://rust-lang.github.io/mdBook/).
9-
A hosted version is available at <https://matrix-org.github.io/matrix-authentication-service/>.
9+
A hosted version is available at <https://element-hq.github.io/matrix-authentication-service/>.
1010

1111
## How the documentation is organized
1212

docs/development/graphql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MAS uses an internal GraphQL API which is used by the self-service user interfac
77
The endpoint for this API can be discovered through the OpenID Connect discovery document, under the `org.matrix.matrix-authentication-service.graphql_endpoint` key.
88
Though it is usually hosted at `https://<mas-host>/graphql`.
99

10-
GraphQL uses [a self-describing schema](https://github.com/matrix-org/matrix-authentication-service/blob/main/frontend/schema.graphql), which means that the API can be explored in tools like the GraphQL Playground.
10+
GraphQL uses [a self-describing schema](https://github.com/element-hq/matrix-authentication-service/blob/main/frontend/schema.graphql), which means that the API can be explored in tools like the GraphQL Playground.
1111
If enabled, MAS hosts an instance of the playground at `https://<mas-host>/graphql/playground`.
1212

1313
## Authorization
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
This is a placeholder which is replaced by the built crates technical documentation when building the documentation.
2-
If you're seeing this, you're probably looking at the documentation source, and should look at the built documentation instead here: <https://matrix-org.github.io/matrix-authentication-service/rustdoc/mas_handlers/>
2+
If you're seeing this, you're probably looking at the documentation source, and should look at the built documentation instead here: <https://element-hq.github.io/matrix-authentication-service/rustdoc/mas_handlers/>

0 commit comments

Comments
 (0)