mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00
parent
1018ca119f
commit
b118a8e606
1
changelog.d/428.misc
Normal file
1
changelog.d/428.misc
Normal file
@ -0,0 +1 @@
|
||||
Correct the docstrings of some connection classes.
|
@ -60,7 +60,7 @@ const SANITIZE_MAX_DEPTH = 5;
|
||||
const SANITIZE_MAX_BREADTH = 25;
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles rooms connected to a generic webhook.
|
||||
*/
|
||||
@Connection
|
||||
export class GenericHookConnection extends BaseConnection implements IConnection {
|
||||
|
@ -26,7 +26,7 @@ const log = new LogWrapper("GitHubDiscussion");
|
||||
const md = new markdown();
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles rooms connected to a GitHub discussion.
|
||||
*/
|
||||
@Connection
|
||||
export class GitHubDiscussionConnection extends BaseConnection implements IConnection {
|
||||
|
@ -15,7 +15,7 @@ export interface GitHubDiscussionSpaceConnectionState {
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles spaces connected to a GitHub discussion.
|
||||
*/
|
||||
@Connection
|
||||
export class GitHubDiscussionSpace extends BaseConnection implements IConnection {
|
||||
|
@ -36,7 +36,7 @@ interface IQueryRoomOpts {
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles rooms connected to a GitHub issue.
|
||||
*/
|
||||
@Connection
|
||||
export class GitHubIssueConnection extends BaseConnection implements IConnection {
|
||||
|
@ -12,7 +12,7 @@ export interface GitHubProjectConnectionState {
|
||||
const log = new LogWrapper("GitHubProjectConnection");
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles rooms connected to a GitHub project.
|
||||
*/
|
||||
@Connection
|
||||
export class GitHubProjectConnection extends BaseConnection implements IConnection {
|
||||
|
@ -209,7 +209,7 @@ function compareEmojiStrings(e0: string, e1: string, e0Index = 0) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles rooms connected to a GitHub repo.
|
||||
*/
|
||||
@Connection
|
||||
export class GitHubRepoConnection extends CommandConnection implements IConnection {
|
||||
|
@ -14,7 +14,7 @@ export interface GitHubUserSpaceConnectionState {
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles spaces connected to a GitHub user.
|
||||
*/
|
||||
@Connection
|
||||
export class GitHubUserSpace extends BaseConnection implements IConnection {
|
||||
|
@ -31,7 +31,7 @@ const log = new LogWrapper("GitLabIssueConnection");
|
||||
// }
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles rooms connected to a GitLab issue.
|
||||
*/
|
||||
@Connection
|
||||
export class GitLabIssueConnection extends BaseConnection implements IConnection {
|
||||
|
@ -127,7 +127,7 @@ export interface GitLabTargetFilter {
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles rooms connected to a GitLab repo.
|
||||
*/
|
||||
@Connection
|
||||
export class GitLabRepoConnection extends CommandConnection {
|
||||
|
@ -47,7 +47,7 @@ const log = new LogWrapper("JiraProjectConnection");
|
||||
const md = new markdownit();
|
||||
|
||||
/**
|
||||
* Handles rooms connected to a github repo.
|
||||
* Handles rooms connected to a Jira project.
|
||||
*/
|
||||
@Connection
|
||||
export class JiraProjectConnection extends CommandConnection implements IConnection {
|
||||
|
Loading…
x
Reference in New Issue
Block a user