├── .dockerignore ├── .env.example ├── .eslintrc.cjs ├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── docker.yml │ ├── go-ci.yml │ ├── js-ci.yml │ └── php-ci.yml ├── .gitignore ├── .htaccess ├── .prettierrc.json ├── CODEOWNERS ├── LICENSE ├── README.md ├── bin ├── bash_completion.sh ├── cake ├── cake.bat └── cake.php ├── cloudbuild.yaml ├── composer.json ├── composer.lock ├── config ├── Migrations │ ├── 20220823145906_Initial.php │ ├── 20221006005228_AddSessionsAndMessageType.php │ ├── 20230106205549_AddUserStatus.php │ ├── 20230108001918_AddSlackIsBot.php │ ├── 20230116230311_AddUsersNotifications.php │ ├── 20230205002857_AddUserRole.php │ ├── 20230207005726_AddProductsAndPurchases.php │ ├── 20230215181736_AddPolls.php │ ├── 20230220223740_AddProgression.php │ ├── 20230225010749_AddPurchasesPresenteeIdAndMessage.php │ ├── 20230821152146_AddApiToken.php │ ├── 20230825221956_AddAnonymousPolls.php │ ├── 20240302162526_AddQuickWins.php │ ├── 20240706000315_AddUserSlackTimeZone.php │ ├── 20250819131921_AddProductType.php │ └── 20250822063101_AddPurchaseCode.php ├── app.php ├── bootstrap.php ├── bootstrap_cli.php ├── paths.php ├── plugins.php ├── routes.php └── schema │ ├── i18n.sql │ └── sessions.sql ├── docker-compose.yml ├── docker ├── backend │ ├── Dockerfile │ ├── apache │ │ └── gib-potato.conf │ ├── cli.sh │ ├── run.sh │ └── supervisord │ │ └── conf.d │ │ ├── apache.conf │ │ ├── php-agent.conf │ │ └── php-fpm.conf ├── potal │ └── Dockerfile └── shopato │ └── Dockerfile ├── frontend └── src │ ├── App.vue │ ├── api │ └── index.js │ ├── assets │ └── main.css │ ├── components │ ├── Filter.vue │ ├── FormattedMessage.vue │ ├── Leaderboard.vue │ └── MainMenu.vue │ ├── helper.js │ ├── main.js │ ├── router │ └── index.js │ ├── store │ └── index.js │ └── views │ ├── Collection.vue │ ├── Home.vue │ ├── Profile.vue │ ├── QuickWins.vue │ ├── Settings.vue │ └── Shop.vue ├── index.php ├── package.json ├── phpcs.xml ├── phpstan.neon ├── phpunit.xml.dist ├── postcss.config.js ├── potal ├── .air.toml ├── .gitignore ├── go.mod ├── go.sum ├── handler.go ├── internal │ ├── constants │ │ └── potato.go │ ├── event │ │ ├── apphomeopened.go │ │ ├── appmention.go │ │ ├── directmessage.go │ │ ├── event.go │ │ ├── interactioncallback.go │ │ ├── linkshared.go │ │ ├── message.go │ │ ├── reactionadded.go │ │ └── slashcommand.go │ ├── potalhttp │ │ └── client.go │ └── utils │ │ ├── message.go │ │ ├── message_test.go │ │ ├── reaction.go │ │ ├── reaction_test.go │ │ ├── receivers.go │ │ └── receivers_test.go ├── main.go └── middleware.go ├── resources └── .gitkeep ├── shopato ├── .dockerignore ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ ├── .keep │ │ │ ├── loggable.rb │ │ │ └── secure_potato_concern.rb │ │ ├── gift_card_controller.rb │ │ └── home_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── javascript │ │ ├── application.js │ │ └── controllers │ │ │ ├── application.js │ │ │ ├── hello_controller.js │ │ │ └── index.js │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── gift_card.rb │ ├── services │ │ ├── service_result.rb │ │ └── shopify_gift_card_service.rb │ └── views │ │ ├── home │ │ └── index.html.erb │ │ ├── layouts │ │ └── application.html.erb │ │ └── pwa │ │ ├── manifest.json.erb │ │ └── service-worker.js ├── bin │ ├── brakeman │ ├── dev │ ├── docker-entrypoint │ ├── importmap │ ├── jobs │ ├── rails │ ├── rake │ ├── rubocop │ ├── setup │ └── thrust ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── cache.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── deploy.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── importmap.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── content_security_policy.rb │ │ ├── dotenv.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ └── sentry.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── queue.yml │ ├── recurring.yml │ ├── routes.rb │ └── storage.yml ├── db │ ├── cable_schema.rb │ ├── cache_schema.rb │ ├── queue_schema.rb │ └── seeds.rb ├── lib │ └── tasks │ │ └── .keep ├── log │ └── .keep ├── mise.toml ├── public │ ├── 400.html │ ├── 404.html │ ├── 406-unsupported-browser.html │ ├── 422.html │ ├── 500.html │ ├── icon.png │ ├── icon.svg │ └── robots.txt ├── script │ └── .keep ├── storage │ └── .keep ├── test │ ├── application_system_test_case.rb │ ├── controllers │ │ ├── .keep │ │ ├── concerns │ │ │ └── secure_potato_concern_test.rb │ │ └── gift_card_controller_test.rb │ ├── fixtures │ │ └── files │ │ │ └── .keep │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ └── gift_card_test.rb │ ├── services │ │ └── shopify_gift_card_service_test.rb │ ├── support │ │ └── gift_card_test_helper.rb │ ├── system │ │ └── .keep │ └── test_helper.rb ├── tmp │ ├── .keep │ ├── pids │ │ └── .keep │ └── storage │ │ └── .keep └── vendor │ ├── .keep │ └── javascript │ └── .keep ├── src ├── Application.php ├── Command │ ├── ProgressionCommand.php │ ├── SendMessageCommand.php │ ├── ShowAndTellCommand.php │ ├── TooGoodToGoCommand.php │ ├── UpdateUsersCommand.php │ └── WeeklyReportCommand.php ├── Console │ └── Installer.php ├── Controller │ ├── Api │ │ ├── ApiController.php │ │ ├── CollectionController.php │ │ ├── LeaderBoardController.php │ │ ├── QuickWinsController.php │ │ ├── ShopController.php │ │ └── UsersController.php │ ├── AppController.php │ ├── Component │ │ └── .gitkeep │ ├── ErrorController.php │ ├── EventsController.php │ ├── HomeController.php │ ├── LoginController.php │ └── TermsController.php ├── Database │ └── Log │ │ └── SentryQueryLogger.php ├── Error │ └── SentryErrorLogger.php ├── Event │ ├── AbstractEvent.php │ ├── AppHomeOpenedEvent.php │ ├── AppMentionEvent.php │ ├── DirectMessageEvent.php │ ├── EventFactory.php │ ├── InteractionsCallbackEvent.php │ ├── LinkSharedEvent.php │ ├── MessageEvent.php │ ├── ReactionAddedEvent.php │ ├── SlashCommandEvent.php │ └── Validation │ │ ├── Exception │ │ └── PotatoException.php │ │ └── Validation.php ├── Http │ ├── Client.php │ ├── DiscordClient.php │ └── SlackClient.php ├── Identifier │ ├── ApiTokenIdentifier.php │ └── PotalIdentifier.php ├── Middleware │ ├── SentryMiddleware.php │ └── SentryUserMiddleware.php ├── Model │ ├── Behavior │ │ └── .gitkeep │ ├── Entity │ │ ├── ApiToken.php │ │ ├── Message.php │ │ ├── Poll.php │ │ ├── PollOption.php │ │ ├── PollResponse.php │ │ ├── Product.php │ │ ├── Progression.php │ │ ├── Purchase.php │ │ ├── QuickWin.php │ │ └── User.php │ └── Table │ │ ├── ApiTokensTable.php │ │ ├── MessagesTable.php │ │ ├── PollOptionsTable.php │ │ ├── PollResponsesTable.php │ │ ├── PollsTable.php │ │ ├── ProductsTable.php │ │ ├── ProgressionTable.php │ │ ├── PurchasesTable.php │ │ ├── QuickWinsTable.php │ │ └── UsersTable.php ├── Service │ ├── AwardService.php │ ├── NotificationService.php │ ├── PollService.php │ ├── ProgressionService.php │ ├── QuickWinService.php │ └── UserService.php ├── Utils │ └── SentryTime.php └── View │ ├── AjaxView.php │ ├── AppView.php │ ├── Cell │ └── .gitkeep │ └── Helper │ ├── SentryHelper.php │ └── ViteHelper.php ├── tailwind.config.js ├── templates ├── Error │ ├── error400.php │ └── error500.php ├── Home │ └── index.php ├── Login │ ├── login.php │ └── mobile.php ├── Terms │ └── index.php ├── element │ ├── assets.php │ ├── flash │ │ ├── default.php │ │ ├── error.php │ │ └── success.php │ └── footer.php └── layout │ ├── default.php │ └── error.php ├── tests ├── Fixture │ ├── MessagesFixture.php │ ├── QuickWinsFixture.php │ └── UsersFixture.php ├── TestCase │ ├── Controller │ │ └── EventsControllerTest.php │ ├── FactoryTrait.php │ ├── Model │ │ └── Entity │ │ │ └── UserTest.php │ └── Utils │ │ └── SentryTimeTest.php ├── bootstrap.php └── schema.sql ├── vite.config.js └── webroot ├── .htaccess ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── css └── .gitkeep ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── img ├── logo.png └── shop │ ├── baked.png │ ├── baked.svg │ ├── bavarian-dumplings.png │ ├── bavarian-dumplings.svg │ ├── chips.png │ ├── chips.svg │ ├── curlyfries.png │ ├── curlyfries.svg │ ├── fries.png │ ├── fries.svg │ ├── gift-card.png │ ├── gift-card.svg │ ├── gratin.png │ ├── gratin.svg │ ├── hashbrown.png │ ├── hashbrown.svg │ ├── hasselback.png │ ├── hasselback.svg │ ├── mashed.png │ ├── mashed.svg │ ├── patata.png │ ├── patata.svg │ ├── pierogi.png │ ├── pierogi.svg │ ├── wedges.png │ └── wedges.svg ├── index.php ├── js └── .gitkeep └── robots.txt /.dockerignore: -------------------------------------------------------------------------------- 1 | config/app_local.php 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/go-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.github/workflows/go-ci.yml -------------------------------------------------------------------------------- /.github/workflows/js-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.github/workflows/js-ci.yml -------------------------------------------------------------------------------- /.github/workflows/php-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.github/workflows/php-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.htaccess -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @getsentry/gib-potato 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/README.md -------------------------------------------------------------------------------- /bin/bash_completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/bin/bash_completion.sh -------------------------------------------------------------------------------- /bin/cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/bin/cake -------------------------------------------------------------------------------- /bin/cake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/bin/cake.bat -------------------------------------------------------------------------------- /bin/cake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/bin/cake.php -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/composer.lock -------------------------------------------------------------------------------- /config/Migrations/20220823145906_Initial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20220823145906_Initial.php -------------------------------------------------------------------------------- /config/Migrations/20221006005228_AddSessionsAndMessageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20221006005228_AddSessionsAndMessageType.php -------------------------------------------------------------------------------- /config/Migrations/20230106205549_AddUserStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230106205549_AddUserStatus.php -------------------------------------------------------------------------------- /config/Migrations/20230108001918_AddSlackIsBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230108001918_AddSlackIsBot.php -------------------------------------------------------------------------------- /config/Migrations/20230116230311_AddUsersNotifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230116230311_AddUsersNotifications.php -------------------------------------------------------------------------------- /config/Migrations/20230205002857_AddUserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230205002857_AddUserRole.php -------------------------------------------------------------------------------- /config/Migrations/20230207005726_AddProductsAndPurchases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230207005726_AddProductsAndPurchases.php -------------------------------------------------------------------------------- /config/Migrations/20230215181736_AddPolls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230215181736_AddPolls.php -------------------------------------------------------------------------------- /config/Migrations/20230220223740_AddProgression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230220223740_AddProgression.php -------------------------------------------------------------------------------- /config/Migrations/20230225010749_AddPurchasesPresenteeIdAndMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230225010749_AddPurchasesPresenteeIdAndMessage.php -------------------------------------------------------------------------------- /config/Migrations/20230821152146_AddApiToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230821152146_AddApiToken.php -------------------------------------------------------------------------------- /config/Migrations/20230825221956_AddAnonymousPolls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20230825221956_AddAnonymousPolls.php -------------------------------------------------------------------------------- /config/Migrations/20240302162526_AddQuickWins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20240302162526_AddQuickWins.php -------------------------------------------------------------------------------- /config/Migrations/20240706000315_AddUserSlackTimeZone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20240706000315_AddUserSlackTimeZone.php -------------------------------------------------------------------------------- /config/Migrations/20250819131921_AddProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20250819131921_AddProductType.php -------------------------------------------------------------------------------- /config/Migrations/20250822063101_AddPurchaseCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/Migrations/20250822063101_AddPurchaseCode.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/app.php -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bootstrap_cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/bootstrap_cli.php -------------------------------------------------------------------------------- /config/paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/paths.php -------------------------------------------------------------------------------- /config/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/plugins.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/routes.php -------------------------------------------------------------------------------- /config/schema/i18n.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/schema/i18n.sql -------------------------------------------------------------------------------- /config/schema/sessions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/config/schema/sessions.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker/backend/Dockerfile -------------------------------------------------------------------------------- /docker/backend/apache/gib-potato.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker/backend/apache/gib-potato.conf -------------------------------------------------------------------------------- /docker/backend/cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker/backend/cli.sh -------------------------------------------------------------------------------- /docker/backend/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker/backend/run.sh -------------------------------------------------------------------------------- /docker/backend/supervisord/conf.d/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker/backend/supervisord/conf.d/apache.conf -------------------------------------------------------------------------------- /docker/backend/supervisord/conf.d/php-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker/backend/supervisord/conf.d/php-agent.conf -------------------------------------------------------------------------------- /docker/backend/supervisord/conf.d/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker/backend/supervisord/conf.d/php-fpm.conf -------------------------------------------------------------------------------- /docker/potal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker/potal/Dockerfile -------------------------------------------------------------------------------- /docker/shopato/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/docker/shopato/Dockerfile -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/api/index.js -------------------------------------------------------------------------------- /frontend/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/assets/main.css -------------------------------------------------------------------------------- /frontend/src/components/Filter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/components/Filter.vue -------------------------------------------------------------------------------- /frontend/src/components/FormattedMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/components/FormattedMessage.vue -------------------------------------------------------------------------------- /frontend/src/components/Leaderboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/components/Leaderboard.vue -------------------------------------------------------------------------------- /frontend/src/components/MainMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/components/MainMenu.vue -------------------------------------------------------------------------------- /frontend/src/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/helper.js -------------------------------------------------------------------------------- /frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/main.js -------------------------------------------------------------------------------- /frontend/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/router/index.js -------------------------------------------------------------------------------- /frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/store/index.js -------------------------------------------------------------------------------- /frontend/src/views/Collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/views/Collection.vue -------------------------------------------------------------------------------- /frontend/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/views/Home.vue -------------------------------------------------------------------------------- /frontend/src/views/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/views/Profile.vue -------------------------------------------------------------------------------- /frontend/src/views/QuickWins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/views/QuickWins.vue -------------------------------------------------------------------------------- /frontend/src/views/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/views/Settings.vue -------------------------------------------------------------------------------- /frontend/src/views/Shop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/frontend/src/views/Shop.vue -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/postcss.config.js -------------------------------------------------------------------------------- /potal/.air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/.air.toml -------------------------------------------------------------------------------- /potal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/.gitignore -------------------------------------------------------------------------------- /potal/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/go.mod -------------------------------------------------------------------------------- /potal/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/go.sum -------------------------------------------------------------------------------- /potal/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/handler.go -------------------------------------------------------------------------------- /potal/internal/constants/potato.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/constants/potato.go -------------------------------------------------------------------------------- /potal/internal/event/apphomeopened.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/event/apphomeopened.go -------------------------------------------------------------------------------- /potal/internal/event/appmention.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/event/appmention.go -------------------------------------------------------------------------------- /potal/internal/event/directmessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/event/directmessage.go -------------------------------------------------------------------------------- /potal/internal/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/event/event.go -------------------------------------------------------------------------------- /potal/internal/event/interactioncallback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/event/interactioncallback.go -------------------------------------------------------------------------------- /potal/internal/event/linkshared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/event/linkshared.go -------------------------------------------------------------------------------- /potal/internal/event/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/event/message.go -------------------------------------------------------------------------------- /potal/internal/event/reactionadded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/event/reactionadded.go -------------------------------------------------------------------------------- /potal/internal/event/slashcommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/event/slashcommand.go -------------------------------------------------------------------------------- /potal/internal/potalhttp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/potalhttp/client.go -------------------------------------------------------------------------------- /potal/internal/utils/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/utils/message.go -------------------------------------------------------------------------------- /potal/internal/utils/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/utils/message_test.go -------------------------------------------------------------------------------- /potal/internal/utils/reaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/utils/reaction.go -------------------------------------------------------------------------------- /potal/internal/utils/reaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/utils/reaction_test.go -------------------------------------------------------------------------------- /potal/internal/utils/receivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/utils/receivers.go -------------------------------------------------------------------------------- /potal/internal/utils/receivers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/internal/utils/receivers_test.go -------------------------------------------------------------------------------- /potal/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/main.go -------------------------------------------------------------------------------- /potal/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/potal/middleware.go -------------------------------------------------------------------------------- /resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/.dockerignore -------------------------------------------------------------------------------- /shopato/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/.gitignore -------------------------------------------------------------------------------- /shopato/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/.rubocop.yml -------------------------------------------------------------------------------- /shopato/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.4.5 2 | -------------------------------------------------------------------------------- /shopato/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/Gemfile -------------------------------------------------------------------------------- /shopato/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/Gemfile.lock -------------------------------------------------------------------------------- /shopato/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/README.md -------------------------------------------------------------------------------- /shopato/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/Rakefile -------------------------------------------------------------------------------- /shopato/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /shopato/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /shopato/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/app/controllers/concerns/loggable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/controllers/concerns/loggable.rb -------------------------------------------------------------------------------- /shopato/app/controllers/concerns/secure_potato_concern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/controllers/concerns/secure_potato_concern.rb -------------------------------------------------------------------------------- /shopato/app/controllers/gift_card_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/controllers/gift_card_controller.rb -------------------------------------------------------------------------------- /shopato/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /shopato/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /shopato/app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/javascript/application.js -------------------------------------------------------------------------------- /shopato/app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /shopato/app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /shopato/app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /shopato/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/models/application_record.rb -------------------------------------------------------------------------------- /shopato/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/app/models/gift_card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/models/gift_card.rb -------------------------------------------------------------------------------- /shopato/app/services/service_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/services/service_result.rb -------------------------------------------------------------------------------- /shopato/app/services/shopify_gift_card_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/services/shopify_gift_card_service.rb -------------------------------------------------------------------------------- /shopato/app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/views/home/index.html.erb -------------------------------------------------------------------------------- /shopato/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /shopato/app/views/pwa/manifest.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/views/pwa/manifest.json.erb -------------------------------------------------------------------------------- /shopato/app/views/pwa/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/app/views/pwa/service-worker.js -------------------------------------------------------------------------------- /shopato/bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/brakeman -------------------------------------------------------------------------------- /shopato/bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/dev -------------------------------------------------------------------------------- /shopato/bin/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/docker-entrypoint -------------------------------------------------------------------------------- /shopato/bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/importmap -------------------------------------------------------------------------------- /shopato/bin/jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/jobs -------------------------------------------------------------------------------- /shopato/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/rails -------------------------------------------------------------------------------- /shopato/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/rake -------------------------------------------------------------------------------- /shopato/bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/rubocop -------------------------------------------------------------------------------- /shopato/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/setup -------------------------------------------------------------------------------- /shopato/bin/thrust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/bin/thrust -------------------------------------------------------------------------------- /shopato/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config.ru -------------------------------------------------------------------------------- /shopato/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/application.rb -------------------------------------------------------------------------------- /shopato/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/boot.rb -------------------------------------------------------------------------------- /shopato/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/cable.yml -------------------------------------------------------------------------------- /shopato/config/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/cache.yml -------------------------------------------------------------------------------- /shopato/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/credentials.yml.enc -------------------------------------------------------------------------------- /shopato/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/database.yml -------------------------------------------------------------------------------- /shopato/config/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/deploy.yml -------------------------------------------------------------------------------- /shopato/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/environment.rb -------------------------------------------------------------------------------- /shopato/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/environments/development.rb -------------------------------------------------------------------------------- /shopato/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/environments/production.rb -------------------------------------------------------------------------------- /shopato/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/environments/test.rb -------------------------------------------------------------------------------- /shopato/config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/importmap.rb -------------------------------------------------------------------------------- /shopato/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/initializers/assets.rb -------------------------------------------------------------------------------- /shopato/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /shopato/config/initializers/dotenv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/initializers/dotenv.rb -------------------------------------------------------------------------------- /shopato/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /shopato/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/initializers/inflections.rb -------------------------------------------------------------------------------- /shopato/config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/initializers/sentry.rb -------------------------------------------------------------------------------- /shopato/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/locales/en.yml -------------------------------------------------------------------------------- /shopato/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/puma.rb -------------------------------------------------------------------------------- /shopato/config/queue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/queue.yml -------------------------------------------------------------------------------- /shopato/config/recurring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/recurring.yml -------------------------------------------------------------------------------- /shopato/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/routes.rb -------------------------------------------------------------------------------- /shopato/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/config/storage.yml -------------------------------------------------------------------------------- /shopato/db/cable_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/db/cable_schema.rb -------------------------------------------------------------------------------- /shopato/db/cache_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/db/cache_schema.rb -------------------------------------------------------------------------------- /shopato/db/queue_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/db/queue_schema.rb -------------------------------------------------------------------------------- /shopato/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/db/seeds.rb -------------------------------------------------------------------------------- /shopato/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | ruby = "3.4.5" 3 | -------------------------------------------------------------------------------- /shopato/public/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/public/400.html -------------------------------------------------------------------------------- /shopato/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/public/404.html -------------------------------------------------------------------------------- /shopato/public/406-unsupported-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/public/406-unsupported-browser.html -------------------------------------------------------------------------------- /shopato/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/public/422.html -------------------------------------------------------------------------------- /shopato/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/public/500.html -------------------------------------------------------------------------------- /shopato/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/public/icon.png -------------------------------------------------------------------------------- /shopato/public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/public/icon.svg -------------------------------------------------------------------------------- /shopato/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/public/robots.txt -------------------------------------------------------------------------------- /shopato/script/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/test/application_system_test_case.rb -------------------------------------------------------------------------------- /shopato/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/test/controllers/concerns/secure_potato_concern_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/test/controllers/concerns/secure_potato_concern_test.rb -------------------------------------------------------------------------------- /shopato/test/controllers/gift_card_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/test/controllers/gift_card_controller_test.rb -------------------------------------------------------------------------------- /shopato/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/test/models/gift_card_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/test/models/gift_card_test.rb -------------------------------------------------------------------------------- /shopato/test/services/shopify_gift_card_service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/test/services/shopify_gift_card_service_test.rb -------------------------------------------------------------------------------- /shopato/test/support/gift_card_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/test/support/gift_card_test_helper.rb -------------------------------------------------------------------------------- /shopato/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/shopato/test/test_helper.rb -------------------------------------------------------------------------------- /shopato/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopato/vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Command/ProgressionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Command/ProgressionCommand.php -------------------------------------------------------------------------------- /src/Command/SendMessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Command/SendMessageCommand.php -------------------------------------------------------------------------------- /src/Command/ShowAndTellCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Command/ShowAndTellCommand.php -------------------------------------------------------------------------------- /src/Command/TooGoodToGoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Command/TooGoodToGoCommand.php -------------------------------------------------------------------------------- /src/Command/UpdateUsersCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Command/UpdateUsersCommand.php -------------------------------------------------------------------------------- /src/Command/WeeklyReportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Command/WeeklyReportCommand.php -------------------------------------------------------------------------------- /src/Console/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Console/Installer.php -------------------------------------------------------------------------------- /src/Controller/Api/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/Api/ApiController.php -------------------------------------------------------------------------------- /src/Controller/Api/CollectionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/Api/CollectionController.php -------------------------------------------------------------------------------- /src/Controller/Api/LeaderBoardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/Api/LeaderBoardController.php -------------------------------------------------------------------------------- /src/Controller/Api/QuickWinsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/Api/QuickWinsController.php -------------------------------------------------------------------------------- /src/Controller/Api/ShopController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/Api/ShopController.php -------------------------------------------------------------------------------- /src/Controller/Api/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/Api/UsersController.php -------------------------------------------------------------------------------- /src/Controller/AppController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/AppController.php -------------------------------------------------------------------------------- /src/Controller/Component/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Controller/ErrorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/ErrorController.php -------------------------------------------------------------------------------- /src/Controller/EventsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/EventsController.php -------------------------------------------------------------------------------- /src/Controller/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/HomeController.php -------------------------------------------------------------------------------- /src/Controller/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/LoginController.php -------------------------------------------------------------------------------- /src/Controller/TermsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Controller/TermsController.php -------------------------------------------------------------------------------- /src/Database/Log/SentryQueryLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Database/Log/SentryQueryLogger.php -------------------------------------------------------------------------------- /src/Error/SentryErrorLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Error/SentryErrorLogger.php -------------------------------------------------------------------------------- /src/Event/AbstractEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/AbstractEvent.php -------------------------------------------------------------------------------- /src/Event/AppHomeOpenedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/AppHomeOpenedEvent.php -------------------------------------------------------------------------------- /src/Event/AppMentionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/AppMentionEvent.php -------------------------------------------------------------------------------- /src/Event/DirectMessageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/DirectMessageEvent.php -------------------------------------------------------------------------------- /src/Event/EventFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/EventFactory.php -------------------------------------------------------------------------------- /src/Event/InteractionsCallbackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/InteractionsCallbackEvent.php -------------------------------------------------------------------------------- /src/Event/LinkSharedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/LinkSharedEvent.php -------------------------------------------------------------------------------- /src/Event/MessageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/MessageEvent.php -------------------------------------------------------------------------------- /src/Event/ReactionAddedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/ReactionAddedEvent.php -------------------------------------------------------------------------------- /src/Event/SlashCommandEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/SlashCommandEvent.php -------------------------------------------------------------------------------- /src/Event/Validation/Exception/PotatoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/Validation/Exception/PotatoException.php -------------------------------------------------------------------------------- /src/Event/Validation/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Event/Validation/Validation.php -------------------------------------------------------------------------------- /src/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Http/Client.php -------------------------------------------------------------------------------- /src/Http/DiscordClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Http/DiscordClient.php -------------------------------------------------------------------------------- /src/Http/SlackClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Http/SlackClient.php -------------------------------------------------------------------------------- /src/Identifier/ApiTokenIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Identifier/ApiTokenIdentifier.php -------------------------------------------------------------------------------- /src/Identifier/PotalIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Identifier/PotalIdentifier.php -------------------------------------------------------------------------------- /src/Middleware/SentryMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Middleware/SentryMiddleware.php -------------------------------------------------------------------------------- /src/Middleware/SentryUserMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Middleware/SentryUserMiddleware.php -------------------------------------------------------------------------------- /src/Model/Behavior/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Model/Entity/ApiToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/ApiToken.php -------------------------------------------------------------------------------- /src/Model/Entity/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/Message.php -------------------------------------------------------------------------------- /src/Model/Entity/Poll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/Poll.php -------------------------------------------------------------------------------- /src/Model/Entity/PollOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/PollOption.php -------------------------------------------------------------------------------- /src/Model/Entity/PollResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/PollResponse.php -------------------------------------------------------------------------------- /src/Model/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/Product.php -------------------------------------------------------------------------------- /src/Model/Entity/Progression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/Progression.php -------------------------------------------------------------------------------- /src/Model/Entity/Purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/Purchase.php -------------------------------------------------------------------------------- /src/Model/Entity/QuickWin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/QuickWin.php -------------------------------------------------------------------------------- /src/Model/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Entity/User.php -------------------------------------------------------------------------------- /src/Model/Table/ApiTokensTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/ApiTokensTable.php -------------------------------------------------------------------------------- /src/Model/Table/MessagesTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/MessagesTable.php -------------------------------------------------------------------------------- /src/Model/Table/PollOptionsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/PollOptionsTable.php -------------------------------------------------------------------------------- /src/Model/Table/PollResponsesTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/PollResponsesTable.php -------------------------------------------------------------------------------- /src/Model/Table/PollsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/PollsTable.php -------------------------------------------------------------------------------- /src/Model/Table/ProductsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/ProductsTable.php -------------------------------------------------------------------------------- /src/Model/Table/ProgressionTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/ProgressionTable.php -------------------------------------------------------------------------------- /src/Model/Table/PurchasesTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/PurchasesTable.php -------------------------------------------------------------------------------- /src/Model/Table/QuickWinsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/QuickWinsTable.php -------------------------------------------------------------------------------- /src/Model/Table/UsersTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Model/Table/UsersTable.php -------------------------------------------------------------------------------- /src/Service/AwardService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Service/AwardService.php -------------------------------------------------------------------------------- /src/Service/NotificationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Service/NotificationService.php -------------------------------------------------------------------------------- /src/Service/PollService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Service/PollService.php -------------------------------------------------------------------------------- /src/Service/ProgressionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Service/ProgressionService.php -------------------------------------------------------------------------------- /src/Service/QuickWinService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Service/QuickWinService.php -------------------------------------------------------------------------------- /src/Service/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Service/UserService.php -------------------------------------------------------------------------------- /src/Utils/SentryTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/Utils/SentryTime.php -------------------------------------------------------------------------------- /src/View/AjaxView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/View/AjaxView.php -------------------------------------------------------------------------------- /src/View/AppView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/View/AppView.php -------------------------------------------------------------------------------- /src/View/Cell/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/View/Helper/SentryHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/View/Helper/SentryHelper.php -------------------------------------------------------------------------------- /src/View/Helper/ViteHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/src/View/Helper/ViteHelper.php -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /templates/Error/error400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/Error/error400.php -------------------------------------------------------------------------------- /templates/Error/error500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/Error/error500.php -------------------------------------------------------------------------------- /templates/Home/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/Home/index.php -------------------------------------------------------------------------------- /templates/Login/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/Login/login.php -------------------------------------------------------------------------------- /templates/Login/mobile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/Login/mobile.php -------------------------------------------------------------------------------- /templates/Terms/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/Terms/index.php -------------------------------------------------------------------------------- /templates/element/assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/element/assets.php -------------------------------------------------------------------------------- /templates/element/flash/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/element/flash/default.php -------------------------------------------------------------------------------- /templates/element/flash/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/element/flash/error.php -------------------------------------------------------------------------------- /templates/element/flash/success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/element/flash/success.php -------------------------------------------------------------------------------- /templates/element/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/element/footer.php -------------------------------------------------------------------------------- /templates/layout/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/layout/default.php -------------------------------------------------------------------------------- /templates/layout/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/templates/layout/error.php -------------------------------------------------------------------------------- /tests/Fixture/MessagesFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tests/Fixture/MessagesFixture.php -------------------------------------------------------------------------------- /tests/Fixture/QuickWinsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tests/Fixture/QuickWinsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/UsersFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tests/Fixture/UsersFixture.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/EventsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tests/TestCase/Controller/EventsControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/FactoryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tests/TestCase/FactoryTrait.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Entity/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tests/TestCase/Model/Entity/UserTest.php -------------------------------------------------------------------------------- /tests/TestCase/Utils/SentryTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tests/TestCase/Utils/SentryTimeTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/tests/schema.sql -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/vite.config.js -------------------------------------------------------------------------------- /webroot/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/.htaccess -------------------------------------------------------------------------------- /webroot/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/android-chrome-192x192.png -------------------------------------------------------------------------------- /webroot/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/android-chrome-512x512.png -------------------------------------------------------------------------------- /webroot/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/apple-touch-icon.png -------------------------------------------------------------------------------- /webroot/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webroot/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/favicon-16x16.png -------------------------------------------------------------------------------- /webroot/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/favicon-32x32.png -------------------------------------------------------------------------------- /webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/favicon.ico -------------------------------------------------------------------------------- /webroot/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/logo.png -------------------------------------------------------------------------------- /webroot/img/shop/baked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/baked.png -------------------------------------------------------------------------------- /webroot/img/shop/baked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/baked.svg -------------------------------------------------------------------------------- /webroot/img/shop/bavarian-dumplings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/bavarian-dumplings.png -------------------------------------------------------------------------------- /webroot/img/shop/bavarian-dumplings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/bavarian-dumplings.svg -------------------------------------------------------------------------------- /webroot/img/shop/chips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/chips.png -------------------------------------------------------------------------------- /webroot/img/shop/chips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/chips.svg -------------------------------------------------------------------------------- /webroot/img/shop/curlyfries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/curlyfries.png -------------------------------------------------------------------------------- /webroot/img/shop/curlyfries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/curlyfries.svg -------------------------------------------------------------------------------- /webroot/img/shop/fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/fries.png -------------------------------------------------------------------------------- /webroot/img/shop/fries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/fries.svg -------------------------------------------------------------------------------- /webroot/img/shop/gift-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/gift-card.png -------------------------------------------------------------------------------- /webroot/img/shop/gift-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/gift-card.svg -------------------------------------------------------------------------------- /webroot/img/shop/gratin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/gratin.png -------------------------------------------------------------------------------- /webroot/img/shop/gratin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/gratin.svg -------------------------------------------------------------------------------- /webroot/img/shop/hashbrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/hashbrown.png -------------------------------------------------------------------------------- /webroot/img/shop/hashbrown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/hashbrown.svg -------------------------------------------------------------------------------- /webroot/img/shop/hasselback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/hasselback.png -------------------------------------------------------------------------------- /webroot/img/shop/hasselback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/hasselback.svg -------------------------------------------------------------------------------- /webroot/img/shop/mashed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/mashed.png -------------------------------------------------------------------------------- /webroot/img/shop/mashed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/mashed.svg -------------------------------------------------------------------------------- /webroot/img/shop/patata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/patata.png -------------------------------------------------------------------------------- /webroot/img/shop/patata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/patata.svg -------------------------------------------------------------------------------- /webroot/img/shop/pierogi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/pierogi.png -------------------------------------------------------------------------------- /webroot/img/shop/pierogi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/pierogi.svg -------------------------------------------------------------------------------- /webroot/img/shop/wedges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/wedges.png -------------------------------------------------------------------------------- /webroot/img/shop/wedges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/img/shop/wedges.svg -------------------------------------------------------------------------------- /webroot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/gib-potato/HEAD/webroot/index.php -------------------------------------------------------------------------------- /webroot/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webroot/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / --------------------------------------------------------------------------------