├── assets ├── logo.png ├── logo-small.png ├── logo.svg └── iframe.html ├── .github ├── CODEOWNERS └── workflows │ └── codeql.yaml ├── README.md ├── translations └── en.json └── manifest.json /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/apps_scaffold_basic/master/assets/logo.png -------------------------------------------------------------------------------- /assets/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/apps_scaffold_basic/master/assets/logo-small.png -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # CODEOWNERS file 2 | # This file defines who should review code changes in this repository. 3 | 4 | * @zendesk/wattle 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # App name 2 | 3 | [brief description of the app] 4 | 5 | ### The following information is displayed: 6 | 7 | * info1 8 | * info2 9 | * info3 10 | 11 | Please submit bug reports to [Insert Link](). Pull requests are welcome. 12 | 13 | ### Screenshot(s): 14 | [put your screenshots down here.] 15 | -------------------------------------------------------------------------------- /translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": { 3 | "name": "Zen Tunes", 4 | "short_description": "Play the famous zen tunes in your help desk.", 5 | "long_description": "Play the famous zen tunes in your help desk and \n listen to the beats it has to offer.", 6 | "installation_instructions": "Simply click install." 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "author": { 4 | "name": "", 5 | "email": "", 6 | "url": "" 7 | }, 8 | "defaultLocale": "en", 9 | "private": true, 10 | "location": { 11 | "support": { 12 | "ticket_sidebar": { 13 | "url": "assets/iframe.html", 14 | "flexible": true 15 | } 16 | } 17 | }, 18 | "version": "1.0.0", 19 | "frameworkVersion": "2.0" 20 | } -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- 1 | name: "CodeQL public repository scanning" 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | - master 8 | schedule: 9 | - cron: "0 0 * * *" 10 | pull_request_target: 11 | types: [opened, synchronize, reopened] 12 | workflow_dispatch: 13 | 14 | permissions: 15 | contents: read 16 | security-events: write 17 | actions: read 18 | packages: read 19 | 20 | jobs: 21 | trigger-codeql: 22 | uses: zendesk/prodsec-code-scanning/.github/workflows/codeql_advanced_shared.yml@production 23 | -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /assets/iframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 |

Hello, World!

14 | 15 | 21 | 22 | 23 | --------------------------------------------------------------------------------