We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3956252 commit 6072779Copy full SHA for 6072779
app/renderer/js/main.ts
@@ -823,6 +823,14 @@ export class ServerManagerView {
823
$serverImg.addEventListener("contextmenu", async (event) => {
824
event.preventDefault();
825
const template = [
826
+ {
827
+ label: t.__("Paste Zulip URL"),
828
+ async click() {
829
+ const url = clipboard.readText();
830
+ await DomainUtil.addDomain({url, alias: url});
831
+ ipcRenderer.send("reload-full-app");
832
+ },
833
834
{
835
label: t.__("Disconnect organization"),
836
async click() {
0 commit comments