├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app ├── ApiObjects │ ├── Comment.php │ ├── Episode.php │ ├── Topic.php │ └── User.php ├── Comment.php ├── Console │ └── Kernel.php ├── Episode.php ├── Events │ └── Event.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ ├── EpisodeScheduledTopicsController.php │ │ │ ├── EpisodesController.php │ │ │ ├── TopicCommentsController.php │ │ │ ├── TopicsController.php │ │ │ └── TopicsVoteController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ ├── GitHubOAuthController.php │ │ │ └── TwitterOAuthController.php │ │ └── Controller.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ └── Request.php │ └── routes.php ├── Jobs │ └── Job.php ├── Listeners │ └── .gitkeep ├── Policies │ └── .gitkeep ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Topic.php ├── User.php └── Vote.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── compile.php ├── database.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2015_12_06_053457_create_topics_table.php │ ├── 2015_12_06_135425_create_votes_table.php │ ├── 2015_12_11_220626_create_episodes_table.php │ └── 2016_10_18_164350_create_comments_table.php └── seeds │ ├── .gitkeep │ └── DatabaseSeeder.php ├── demo.gif ├── features.md ├── package.json ├── phpspec.yml ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── vendor │ │ └── bootstrap-sass │ │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── index.php ├── js │ └── app.js ├── mix-manifest.json └── robots.txt ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bus.js │ │ ├── components │ │ │ ├── accepted-topics.vue │ │ │ ├── admin-dashboard.vue │ │ │ ├── create-episode.vue │ │ │ ├── episode.vue │ │ │ ├── episodes.vue │ │ │ ├── nav-dropdown.vue │ │ │ ├── suggest-topic-button.vue │ │ │ ├── suggest-topic-inline.vue │ │ │ ├── suggest-topic.vue │ │ │ ├── suggested-topics.vue │ │ │ ├── suggestive-editor.vue │ │ │ ├── topic-episode-scheduler.vue │ │ │ ├── topic.vue │ │ │ └── user-dashboard.vue │ │ ├── routes.js │ │ └── topics.js │ └── sass │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── errors │ └── 503.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── partials │ └── svg.blade.php │ ├── vendor │ └── .gitkeep │ └── welcome.blade.php ├── server.php ├── storage ├── app │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── suggestive-logo.png ├── tests ├── AdminEpisodeTest.php ├── AdminTopicTest.php ├── TestCase.php ├── TopicCommentsTest.php └── UserTopicTest.php └── webpack.mix.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/LICENSE -------------------------------------------------------------------------------- /app/ApiObjects/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/ApiObjects/Comment.php -------------------------------------------------------------------------------- /app/ApiObjects/Episode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/ApiObjects/Episode.php -------------------------------------------------------------------------------- /app/ApiObjects/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/ApiObjects/Topic.php -------------------------------------------------------------------------------- /app/ApiObjects/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/ApiObjects/User.php -------------------------------------------------------------------------------- /app/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Comment.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Episode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Episode.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/EpisodeScheduledTopicsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Controllers/Api/EpisodeScheduledTopicsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/EpisodesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Controllers/Api/EpisodesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/TopicCommentsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Controllers/Api/TopicCommentsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/TopicsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Controllers/Api/TopicsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/TopicsVoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Controllers/Api/TopicsVoteController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/GitHubOAuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Controllers/Auth/GitHubOAuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/TwitterOAuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Controllers/Auth/TwitterOAuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Http/routes.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Topic.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/User.php -------------------------------------------------------------------------------- /app/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/app/Vote.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/compile.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2015_12_06_053457_create_topics_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/database/migrations/2015_12_06_053457_create_topics_table.php -------------------------------------------------------------------------------- /database/migrations/2015_12_06_135425_create_votes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/database/migrations/2015_12_06_135425_create_votes_table.php -------------------------------------------------------------------------------- /database/migrations/2015_12_11_220626_create_episodes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/database/migrations/2015_12_11_220626_create_episodes_table.php -------------------------------------------------------------------------------- /database/migrations/2016_10_18_164350_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/database/migrations/2016_10_18_164350_create_comments_table.php -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/demo.gif -------------------------------------------------------------------------------- /features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/features.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/package.json -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/phpspec.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/bus.js -------------------------------------------------------------------------------- /resources/assets/js/components/accepted-topics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/accepted-topics.vue -------------------------------------------------------------------------------- /resources/assets/js/components/admin-dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/admin-dashboard.vue -------------------------------------------------------------------------------- /resources/assets/js/components/create-episode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/create-episode.vue -------------------------------------------------------------------------------- /resources/assets/js/components/episode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/episode.vue -------------------------------------------------------------------------------- /resources/assets/js/components/episodes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/episodes.vue -------------------------------------------------------------------------------- /resources/assets/js/components/nav-dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/nav-dropdown.vue -------------------------------------------------------------------------------- /resources/assets/js/components/suggest-topic-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/suggest-topic-button.vue -------------------------------------------------------------------------------- /resources/assets/js/components/suggest-topic-inline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/suggest-topic-inline.vue -------------------------------------------------------------------------------- /resources/assets/js/components/suggest-topic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/suggest-topic.vue -------------------------------------------------------------------------------- /resources/assets/js/components/suggested-topics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/suggested-topics.vue -------------------------------------------------------------------------------- /resources/assets/js/components/suggestive-editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/suggestive-editor.vue -------------------------------------------------------------------------------- /resources/assets/js/components/topic-episode-scheduler.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/topic-episode-scheduler.vue -------------------------------------------------------------------------------- /resources/assets/js/components/topic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/topic.vue -------------------------------------------------------------------------------- /resources/assets/js/components/user-dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/components/user-dashboard.vue -------------------------------------------------------------------------------- /resources/assets/js/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/routes.js -------------------------------------------------------------------------------- /resources/assets/js/topics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/js/topics.js -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/partials/svg.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/views/partials/svg.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /suggestive-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/suggestive-logo.png -------------------------------------------------------------------------------- /tests/AdminEpisodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/tests/AdminEpisodeTest.php -------------------------------------------------------------------------------- /tests/AdminTopicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/tests/AdminTopicTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/TopicCommentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/tests/TopicCommentsTest.php -------------------------------------------------------------------------------- /tests/UserTopicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/tests/UserTopicTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstauffer/suggestive/HEAD/webpack.mix.js --------------------------------------------------------------------------------