15 |
├── pages
├── templates
│ ├── login
│ │ └── error.html
│ ├── message
│ │ ├── mention.html
│ │ ├── first_message_content.html
│ │ ├── merged_message_content.html
│ │ └── message.html
│ ├── icon.html
│ ├── channellist
│ │ ├── categorychannel.html
│ │ └── textchannel.html
│ ├── server
│ │ ├── server_icon.html
│ │ └── invalid_server.html
│ ├── index
│ │ ├── logged_out.html
│ │ └── logged_in.html
│ ├── channel
│ │ ├── no_message_history.html
│ │ ├── input.html
│ │ └── input_disabled.html
│ ├── server.html
│ ├── forgot.html
│ ├── guest.html
│ ├── login.html
│ ├── index.html
│ ├── channel.html
│ └── register.html
├── static
│ ├── resources
│ │ ├── logo.png
│ │ ├── logo_old.png
│ │ └── images
│ │ │ ├── menu.png
│ │ │ ├── refresh.png
│ │ │ └── menuspacer.png
│ ├── webapp.html
│ └── connection.js
├── forgot.js
├── index.js
├── register.js
├── login.js
├── guest.js
├── send.js
├── server.js
└── channel.js
├── .gitignore
├── README.md
├── package.json
├── bot.js
├── .github
└── workflows
│ └── codeql-analysis.yml
├── connectionHandler.js
├── index.js
├── authentication.js
└── LICENSE.txt
/pages/templates/login/error.html:
--------------------------------------------------------------------------------
1 | {$ERROR_MESSAGE}
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .vscode
3 | secrets
4 | secrets-old
5 | start.sh
6 | getssl
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # discross
2 | A webhook bridge to send messages on Discord through a webpage
3 |
--------------------------------------------------------------------------------
/pages/static/resources/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Heath123/discross/HEAD/pages/static/resources/logo.png
--------------------------------------------------------------------------------
/pages/static/resources/logo_old.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Heath123/discross/HEAD/pages/static/resources/logo_old.png
--------------------------------------------------------------------------------
/pages/templates/message/mention.html:
--------------------------------------------------------------------------------
1 | {$USERNAME}
--------------------------------------------------------------------------------
/pages/static/resources/images/menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Heath123/discross/HEAD/pages/static/resources/images/menu.png
--------------------------------------------------------------------------------
/pages/static/resources/images/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Heath123/discross/HEAD/pages/static/resources/images/refresh.png
--------------------------------------------------------------------------------
/pages/templates/icon.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pages/static/resources/images/menuspacer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Heath123/discross/HEAD/pages/static/resources/images/menuspacer.png
--------------------------------------------------------------------------------
/pages/templates/message/first_message_content.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pages/templates/channellist/categorychannel.html:
--------------------------------------------------------------------------------
1 |
2 | {$CHANNEL_NAME}
3 |
4 |
--------------------------------------------------------------------------------
/pages/templates/message/merged_message_content.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/pages/templates/server/server_icon.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pages/templates/server/invalid_server.html:
--------------------------------------------------------------------------------
1 | Click on a server! Home
--------------------------------------------------------------------------------
/pages/templates/channellist/textchannel.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | # {$CHANNEL_NAME}
4 |
5 |
6 |
--------------------------------------------------------------------------------
/pages/templates/index/logged_out.html:
--------------------------------------------------------------------------------
1 | Login
2 | Register
--------------------------------------------------------------------------------
/pages/templates/channel/no_message_history.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | You do not have permission to view the message history of this channel.
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/pages/templates/channel/input.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/pages/templates/index/logged_in.html:
--------------------------------------------------------------------------------
1 | Logged in as {$USER}
2 | Server list
3 | Logout
--------------------------------------------------------------------------------
/pages/templates/channel/input_disabled.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/pages/templates/server.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 | ![]() 20 | 21 | {$SERVER_LIST} 22 | |
23 | - | 24 |25 | {$CHANNEL_LIST} 26 | | 27 |