├── .coveragerc ├── .ebextensions └── django.config ├── .flake8 ├── .github └── workflows │ ├── development-deploy.yml │ ├── main.yml │ └── production-deploy.yml ├── .gitignore ├── Dockerfile ├── Dockerfile_dev ├── LICENSE ├── Makefile ├── README.md ├── config ├── __init__.py ├── helpers │ ├── __init__.py │ ├── cache.py │ └── environment.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local.py │ ├── production.py │ └── test.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── dotenv ├── manage.py ├── pytest.ini ├── requirements.txt ├── requirements ├── base.in ├── base.txt ├── local.in ├── local.txt ├── production.in └── production.txt ├── scripts └── compile_requirements.sh ├── template.yml ├── tests ├── __init__.py └── application.py └── v1 ├── __init__.py ├── app_store ├── __init__.py ├── admin.py ├── apps.py ├── factories │ └── app.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_app_tagline.py │ ├── 0003_auto_20211004_0505.py │ ├── 0004_app_slug.py │ ├── 0005_app_page_hits.py │ └── __init__.py ├── models │ ├── __init__.py │ └── app.py ├── serializers │ ├── __init__.py │ └── app.py ├── urls.py └── views │ ├── __init__.py │ └── app.py ├── authentication ├── __init__.py ├── serializers │ ├── __init__.py │ └── login.py └── views │ ├── __init__.py │ └── login.py ├── conftest.py ├── feedback ├── __init__.py ├── admin.py ├── apps.py ├── factories │ ├── __init__.py │ └── feedback.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models │ ├── __init__.py │ └── feedback.py ├── serializers │ ├── __init__.py │ └── feedback.py ├── tests │ ├── __init__.py │ └── feedback.py ├── urls.py └── views │ ├── __init__.py │ └── feedback.py ├── openings ├── __init__.py ├── admin.py ├── apps.py ├── factories │ ├── __init__.py │ ├── opening.py │ ├── responsibility.py │ └── skill.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_opening_team.py │ ├── 0003_auto_20201222_0317.py │ ├── 0004_auto_20211007_1613.py │ ├── 0005_auto_20211207_1155.py │ ├── 0006_remove_opening_visible.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── opening.py │ ├── responsibility.py │ └── skill.py ├── serializers │ ├── __init__.py │ ├── opening.py │ ├── responsibility.py │ └── skill.py ├── tests │ ├── __init__.py │ ├── meta.py │ └── opening.py ├── urls.py └── views │ ├── __init__.py │ ├── opening.py │ ├── responsibility.py │ └── skill.py ├── projects ├── __init__.py ├── admin.py ├── apps.py ├── factories │ ├── __init__.py │ └── project.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_milestone.py │ ├── 0003_auto_20210419_1826.py │ ├── 0004_project_is_featured.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── milestone.py │ └── project.py ├── serializers │ ├── __init__.py │ ├── milestone.py │ └── project.py ├── tests │ ├── __init__.py │ ├── milestone.py │ └── project.py ├── urls.py └── views │ ├── __init__.py │ ├── milestone.py │ └── project.py ├── repositories ├── __init__.py ├── admin.py ├── apps.py ├── factories │ ├── __init__.py │ └── repositories.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20201226_1039.py │ ├── 0003_repository_team.py │ └── __init__.py ├── models │ ├── __init__.py │ └── repository.py ├── serializers │ ├── __init__.py │ └── repository.py ├── tests │ ├── __init__.py │ └── repositories.py ├── urls.py └── views │ ├── __init__.py │ └── repository.py ├── roadmap ├── __init__.py ├── admin.py ├── apps.py ├── factories │ ├── __init__.py │ └── roadmap.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models │ ├── __init__.py │ └── roadmap.py ├── serializers │ ├── __init__.py │ └── roadmap.py ├── tests │ ├── __init__.py │ └── roadmap.py ├── urls.py └── views │ ├── __init__.py │ └── roadmap.py ├── tasks ├── __init__.py ├── admin.py ├── apps.py ├── factories │ ├── __init__.py │ └── task.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_task_user.py │ ├── 0003_amount_validators.py │ └── __init__.py ├── models │ ├── __init__.py │ └── task.py ├── serializers │ ├── __init__.py │ └── task.py ├── tests │ ├── __init__.py │ └── task.py ├── urls.py └── views │ ├── __init__.py │ └── task.py ├── teams ├── __init__.py ├── admin.py ├── apps.py ├── factories │ ├── __init__.py │ └── team.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20201024_0123.py │ ├── 0003_auto_20201024_2317.py │ ├── 0004_teammember_job_title.py │ ├── 0005_auto_20201222_0317.py │ ├── 0006_auto_20210212_1011.py │ ├── 0007_slackchannel.py │ ├── 0008_auto_20210219_0551.py │ ├── 0009_auto_20210310_0627.py │ ├── 0010_coreteam.py │ ├── 0011_projectteam.py │ ├── 0012_auto_20210313_1912.py │ ├── 0013_auto_20210324_0602.py │ ├── 0014_auto_20210412_1929.py │ ├── 0015_remove_coreteam_responsibilities.py │ ├── 0016_auto_20210413_0938.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── team.py │ └── team_member.py ├── serializers │ ├── __init__.py │ └── team.py ├── tests │ ├── __init__.py │ ├── team.py │ └── team_member.py ├── urls.py └── views │ ├── __init__.py │ ├── team.py │ └── team_member.py ├── third_party ├── __init__.py ├── django │ ├── __init__.py │ └── contrib │ │ ├── __init__.py │ │ └── auth │ │ ├── __init__.py │ │ ├── managers.py │ │ └── models.py └── rest_framework │ ├── __init__.py │ ├── pagination.py │ └── permissions.py ├── trusted_banks ├── __init__.py ├── admin.py ├── apps.py ├── factories │ ├── __init__.py │ └── trusted_bank.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models │ ├── __init__.py │ └── trusted_bank.py ├── serializers │ ├── __init__.py │ └── trusted_bank.py ├── tests │ ├── __init__.py │ └── trusted_bank.py ├── urls.py └── views │ ├── __init__.py │ └── trusted_bank.py ├── users ├── __init__.py ├── admin.py ├── apps.py ├── factories │ ├── __init__.py │ ├── user.py │ └── user_earnings.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_userearnings.py │ ├── 0003_auto_20201103_1944.py │ ├── 0004_auto_20201103_1946.py │ ├── 0005_auto_20201213_2218.py │ ├── 0006_auto_20201228_0142.py │ ├── 0007_user_is_email_verified.py │ ├── 0008_auto_20210309_0808.py │ ├── 0009_auto_20210402_0111.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── user.py │ └── user_earnings.py ├── serializers │ ├── __init__.py │ ├── user.py │ └── user_earnings.py ├── tests │ ├── __init__.py │ ├── user.py │ └── user_earnings.py ├── urls.py └── views │ ├── __init__.py │ ├── user.py │ └── user_earnings.py ├── utils ├── __init__.py ├── threading.py └── verification.py └── videos ├── __init__.py ├── admin.py ├── apps.py ├── factories ├── __init__.py └── video.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20210211_0437.py ├── 0003_auto_20210211_0627.py ├── 0004_auto_20210324_0620.py ├── 0005_auto_20210327_1802.py ├── 0006_auto_20210331_0543.py ├── 0007_auto_20210513_0658.py ├── 0008_playlist_is_featured.py └── __init__.py ├── models ├── __init__.py ├── instructor.py ├── playlist.py ├── playlist_category.py └── video.py ├── serializers ├── __init__.py ├── instructor.py ├── playlist.py ├── playlist_category.py └── video.py ├── tests ├── __init__.py ├── instructor.py ├── playlist.py ├── playlist_category.py └── video.py ├── urls.py └── views ├── instructor.py ├── playlist.py ├── playlist_category.py └── video.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/.coveragerc -------------------------------------------------------------------------------- /.ebextensions/django.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/.ebextensions/django.config -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/development-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/.github/workflows/development-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/production-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/.github/workflows/production-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/Dockerfile_dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/helpers/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/config/helpers/cache.py -------------------------------------------------------------------------------- /config/helpers/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/config/helpers/environment.py -------------------------------------------------------------------------------- /config/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/config/settings/base.py -------------------------------------------------------------------------------- /config/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/config/settings/local.py -------------------------------------------------------------------------------- /config/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/config/settings/production.py -------------------------------------------------------------------------------- /config/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/config/settings/test.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dotenv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/manage.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/production.txt 2 | -------------------------------------------------------------------------------- /requirements/base.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/requirements/base.in -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/local.in: -------------------------------------------------------------------------------- 1 | -r base.in 2 | -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/production.in: -------------------------------------------------------------------------------- 1 | -r base.in 2 | -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /scripts/compile_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/scripts/compile_requirements.sh -------------------------------------------------------------------------------- /template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/template.yml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/tests/application.py -------------------------------------------------------------------------------- /v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/app_store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/app_store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/admin.py -------------------------------------------------------------------------------- /v1/app_store/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/apps.py -------------------------------------------------------------------------------- /v1/app_store/factories/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/factories/app.py -------------------------------------------------------------------------------- /v1/app_store/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/app_store/migrations/0002_app_tagline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/migrations/0002_app_tagline.py -------------------------------------------------------------------------------- /v1/app_store/migrations/0003_auto_20211004_0505.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/migrations/0003_auto_20211004_0505.py -------------------------------------------------------------------------------- /v1/app_store/migrations/0004_app_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/migrations/0004_app_slug.py -------------------------------------------------------------------------------- /v1/app_store/migrations/0005_app_page_hits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/migrations/0005_app_page_hits.py -------------------------------------------------------------------------------- /v1/app_store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/app_store/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/app_store/models/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/models/app.py -------------------------------------------------------------------------------- /v1/app_store/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/app_store/serializers/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/serializers/app.py -------------------------------------------------------------------------------- /v1/app_store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/urls.py -------------------------------------------------------------------------------- /v1/app_store/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/app_store/views/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/app_store/views/app.py -------------------------------------------------------------------------------- /v1/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/authentication/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/authentication/serializers/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/authentication/serializers/login.py -------------------------------------------------------------------------------- /v1/authentication/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/authentication/views/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/authentication/views/login.py -------------------------------------------------------------------------------- /v1/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/conftest.py -------------------------------------------------------------------------------- /v1/feedback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/feedback/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/feedback/admin.py -------------------------------------------------------------------------------- /v1/feedback/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/feedback/apps.py -------------------------------------------------------------------------------- /v1/feedback/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/feedback/factories/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/feedback/factories/feedback.py -------------------------------------------------------------------------------- /v1/feedback/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/feedback/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/feedback/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/feedback/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/feedback/models/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/feedback/models/feedback.py -------------------------------------------------------------------------------- /v1/feedback/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/feedback/serializers/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/feedback/serializers/feedback.py -------------------------------------------------------------------------------- /v1/feedback/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/feedback/tests/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/feedback/tests/feedback.py -------------------------------------------------------------------------------- /v1/feedback/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/feedback/urls.py -------------------------------------------------------------------------------- /v1/feedback/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/feedback/views/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/feedback/views/feedback.py -------------------------------------------------------------------------------- /v1/openings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/openings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/admin.py -------------------------------------------------------------------------------- /v1/openings/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/apps.py -------------------------------------------------------------------------------- /v1/openings/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/openings/factories/opening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/factories/opening.py -------------------------------------------------------------------------------- /v1/openings/factories/responsibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/factories/responsibility.py -------------------------------------------------------------------------------- /v1/openings/factories/skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/factories/skill.py -------------------------------------------------------------------------------- /v1/openings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/openings/migrations/0002_opening_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/migrations/0002_opening_team.py -------------------------------------------------------------------------------- /v1/openings/migrations/0003_auto_20201222_0317.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/migrations/0003_auto_20201222_0317.py -------------------------------------------------------------------------------- /v1/openings/migrations/0004_auto_20211007_1613.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/migrations/0004_auto_20211007_1613.py -------------------------------------------------------------------------------- /v1/openings/migrations/0005_auto_20211207_1155.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/migrations/0005_auto_20211207_1155.py -------------------------------------------------------------------------------- /v1/openings/migrations/0006_remove_opening_visible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/migrations/0006_remove_opening_visible.py -------------------------------------------------------------------------------- /v1/openings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/openings/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/openings/models/opening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/models/opening.py -------------------------------------------------------------------------------- /v1/openings/models/responsibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/models/responsibility.py -------------------------------------------------------------------------------- /v1/openings/models/skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/models/skill.py -------------------------------------------------------------------------------- /v1/openings/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/openings/serializers/opening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/serializers/opening.py -------------------------------------------------------------------------------- /v1/openings/serializers/responsibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/serializers/responsibility.py -------------------------------------------------------------------------------- /v1/openings/serializers/skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/serializers/skill.py -------------------------------------------------------------------------------- /v1/openings/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/openings/tests/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/tests/meta.py -------------------------------------------------------------------------------- /v1/openings/tests/opening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/tests/opening.py -------------------------------------------------------------------------------- /v1/openings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/urls.py -------------------------------------------------------------------------------- /v1/openings/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/openings/views/opening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/views/opening.py -------------------------------------------------------------------------------- /v1/openings/views/responsibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/views/responsibility.py -------------------------------------------------------------------------------- /v1/openings/views/skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/openings/views/skill.py -------------------------------------------------------------------------------- /v1/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/projects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/admin.py -------------------------------------------------------------------------------- /v1/projects/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/apps.py -------------------------------------------------------------------------------- /v1/projects/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/projects/factories/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/factories/project.py -------------------------------------------------------------------------------- /v1/projects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/projects/migrations/0002_milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/migrations/0002_milestone.py -------------------------------------------------------------------------------- /v1/projects/migrations/0003_auto_20210419_1826.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/migrations/0003_auto_20210419_1826.py -------------------------------------------------------------------------------- /v1/projects/migrations/0004_project_is_featured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/migrations/0004_project_is_featured.py -------------------------------------------------------------------------------- /v1/projects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/projects/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/projects/models/milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/models/milestone.py -------------------------------------------------------------------------------- /v1/projects/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/models/project.py -------------------------------------------------------------------------------- /v1/projects/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/projects/serializers/milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/serializers/milestone.py -------------------------------------------------------------------------------- /v1/projects/serializers/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/serializers/project.py -------------------------------------------------------------------------------- /v1/projects/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/projects/tests/milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/tests/milestone.py -------------------------------------------------------------------------------- /v1/projects/tests/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/tests/project.py -------------------------------------------------------------------------------- /v1/projects/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/urls.py -------------------------------------------------------------------------------- /v1/projects/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/projects/views/milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/views/milestone.py -------------------------------------------------------------------------------- /v1/projects/views/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/projects/views/project.py -------------------------------------------------------------------------------- /v1/repositories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/repositories/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/admin.py -------------------------------------------------------------------------------- /v1/repositories/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/apps.py -------------------------------------------------------------------------------- /v1/repositories/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/repositories/factories/repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/factories/repositories.py -------------------------------------------------------------------------------- /v1/repositories/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/repositories/migrations/0002_auto_20201226_1039.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/migrations/0002_auto_20201226_1039.py -------------------------------------------------------------------------------- /v1/repositories/migrations/0003_repository_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/migrations/0003_repository_team.py -------------------------------------------------------------------------------- /v1/repositories/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/repositories/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/repositories/models/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/models/repository.py -------------------------------------------------------------------------------- /v1/repositories/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/repositories/serializers/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/serializers/repository.py -------------------------------------------------------------------------------- /v1/repositories/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/repositories/tests/repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/tests/repositories.py -------------------------------------------------------------------------------- /v1/repositories/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/urls.py -------------------------------------------------------------------------------- /v1/repositories/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/repositories/views/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/repositories/views/repository.py -------------------------------------------------------------------------------- /v1/roadmap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/roadmap/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/roadmap/admin.py -------------------------------------------------------------------------------- /v1/roadmap/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/roadmap/apps.py -------------------------------------------------------------------------------- /v1/roadmap/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/roadmap/factories/roadmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/roadmap/factories/roadmap.py -------------------------------------------------------------------------------- /v1/roadmap/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/roadmap/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/roadmap/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/roadmap/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/roadmap/models/roadmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/roadmap/models/roadmap.py -------------------------------------------------------------------------------- /v1/roadmap/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/roadmap/serializers/roadmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/roadmap/serializers/roadmap.py -------------------------------------------------------------------------------- /v1/roadmap/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/roadmap/tests/roadmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/roadmap/tests/roadmap.py -------------------------------------------------------------------------------- /v1/roadmap/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/roadmap/urls.py -------------------------------------------------------------------------------- /v1/roadmap/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/roadmap/views/roadmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/roadmap/views/roadmap.py -------------------------------------------------------------------------------- /v1/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/tasks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/admin.py -------------------------------------------------------------------------------- /v1/tasks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/apps.py -------------------------------------------------------------------------------- /v1/tasks/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/tasks/factories/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/factories/task.py -------------------------------------------------------------------------------- /v1/tasks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/tasks/migrations/0002_task_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/migrations/0002_task_user.py -------------------------------------------------------------------------------- /v1/tasks/migrations/0003_amount_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/migrations/0003_amount_validators.py -------------------------------------------------------------------------------- /v1/tasks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/tasks/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/tasks/models/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/models/task.py -------------------------------------------------------------------------------- /v1/tasks/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/tasks/serializers/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/serializers/task.py -------------------------------------------------------------------------------- /v1/tasks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/tasks/tests/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/tests/task.py -------------------------------------------------------------------------------- /v1/tasks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/urls.py -------------------------------------------------------------------------------- /v1/tasks/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/tasks/views/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/tasks/views/task.py -------------------------------------------------------------------------------- /v1/teams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/teams/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/admin.py -------------------------------------------------------------------------------- /v1/teams/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/apps.py -------------------------------------------------------------------------------- /v1/teams/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/teams/factories/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/factories/team.py -------------------------------------------------------------------------------- /v1/teams/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/teams/migrations/0002_auto_20201024_0123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0002_auto_20201024_0123.py -------------------------------------------------------------------------------- /v1/teams/migrations/0003_auto_20201024_2317.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0003_auto_20201024_2317.py -------------------------------------------------------------------------------- /v1/teams/migrations/0004_teammember_job_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0004_teammember_job_title.py -------------------------------------------------------------------------------- /v1/teams/migrations/0005_auto_20201222_0317.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0005_auto_20201222_0317.py -------------------------------------------------------------------------------- /v1/teams/migrations/0006_auto_20210212_1011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0006_auto_20210212_1011.py -------------------------------------------------------------------------------- /v1/teams/migrations/0007_slackchannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0007_slackchannel.py -------------------------------------------------------------------------------- /v1/teams/migrations/0008_auto_20210219_0551.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0008_auto_20210219_0551.py -------------------------------------------------------------------------------- /v1/teams/migrations/0009_auto_20210310_0627.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0009_auto_20210310_0627.py -------------------------------------------------------------------------------- /v1/teams/migrations/0010_coreteam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0010_coreteam.py -------------------------------------------------------------------------------- /v1/teams/migrations/0011_projectteam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0011_projectteam.py -------------------------------------------------------------------------------- /v1/teams/migrations/0012_auto_20210313_1912.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0012_auto_20210313_1912.py -------------------------------------------------------------------------------- /v1/teams/migrations/0013_auto_20210324_0602.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0013_auto_20210324_0602.py -------------------------------------------------------------------------------- /v1/teams/migrations/0014_auto_20210412_1929.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0014_auto_20210412_1929.py -------------------------------------------------------------------------------- /v1/teams/migrations/0015_remove_coreteam_responsibilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0015_remove_coreteam_responsibilities.py -------------------------------------------------------------------------------- /v1/teams/migrations/0016_auto_20210413_0938.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/migrations/0016_auto_20210413_0938.py -------------------------------------------------------------------------------- /v1/teams/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/teams/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/teams/models/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/models/team.py -------------------------------------------------------------------------------- /v1/teams/models/team_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/models/team_member.py -------------------------------------------------------------------------------- /v1/teams/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/teams/serializers/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/serializers/team.py -------------------------------------------------------------------------------- /v1/teams/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/teams/tests/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/tests/team.py -------------------------------------------------------------------------------- /v1/teams/tests/team_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/tests/team_member.py -------------------------------------------------------------------------------- /v1/teams/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/urls.py -------------------------------------------------------------------------------- /v1/teams/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/teams/views/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/views/team.py -------------------------------------------------------------------------------- /v1/teams/views/team_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/teams/views/team_member.py -------------------------------------------------------------------------------- /v1/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/third_party/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/third_party/django/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/third_party/django/contrib/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/third_party/django/contrib/auth/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/third_party/django/contrib/auth/managers.py -------------------------------------------------------------------------------- /v1/third_party/django/contrib/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/third_party/django/contrib/auth/models.py -------------------------------------------------------------------------------- /v1/third_party/rest_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/third_party/rest_framework/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/third_party/rest_framework/pagination.py -------------------------------------------------------------------------------- /v1/third_party/rest_framework/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/third_party/rest_framework/permissions.py -------------------------------------------------------------------------------- /v1/trusted_banks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/trusted_banks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/trusted_banks/admin.py -------------------------------------------------------------------------------- /v1/trusted_banks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/trusted_banks/apps.py -------------------------------------------------------------------------------- /v1/trusted_banks/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/trusted_banks/factories/trusted_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/trusted_banks/factories/trusted_bank.py -------------------------------------------------------------------------------- /v1/trusted_banks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/trusted_banks/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/trusted_banks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/trusted_banks/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/trusted_banks/models/trusted_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/trusted_banks/models/trusted_bank.py -------------------------------------------------------------------------------- /v1/trusted_banks/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/trusted_banks/serializers/trusted_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/trusted_banks/serializers/trusted_bank.py -------------------------------------------------------------------------------- /v1/trusted_banks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/trusted_banks/tests/trusted_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/trusted_banks/tests/trusted_bank.py -------------------------------------------------------------------------------- /v1/trusted_banks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/trusted_banks/urls.py -------------------------------------------------------------------------------- /v1/trusted_banks/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/trusted_banks/views/trusted_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/trusted_banks/views/trusted_bank.py -------------------------------------------------------------------------------- /v1/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/admin.py -------------------------------------------------------------------------------- /v1/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/apps.py -------------------------------------------------------------------------------- /v1/users/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/users/factories/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/factories/user.py -------------------------------------------------------------------------------- /v1/users/factories/user_earnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/factories/user_earnings.py -------------------------------------------------------------------------------- /v1/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/users/migrations/0002_userearnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/migrations/0002_userearnings.py -------------------------------------------------------------------------------- /v1/users/migrations/0003_auto_20201103_1944.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/migrations/0003_auto_20201103_1944.py -------------------------------------------------------------------------------- /v1/users/migrations/0004_auto_20201103_1946.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/migrations/0004_auto_20201103_1946.py -------------------------------------------------------------------------------- /v1/users/migrations/0005_auto_20201213_2218.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/migrations/0005_auto_20201213_2218.py -------------------------------------------------------------------------------- /v1/users/migrations/0006_auto_20201228_0142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/migrations/0006_auto_20201228_0142.py -------------------------------------------------------------------------------- /v1/users/migrations/0007_user_is_email_verified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/migrations/0007_user_is_email_verified.py -------------------------------------------------------------------------------- /v1/users/migrations/0008_auto_20210309_0808.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/migrations/0008_auto_20210309_0808.py -------------------------------------------------------------------------------- /v1/users/migrations/0009_auto_20210402_0111.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/migrations/0009_auto_20210402_0111.py -------------------------------------------------------------------------------- /v1/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/users/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/models/__init__.py -------------------------------------------------------------------------------- /v1/users/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/models/user.py -------------------------------------------------------------------------------- /v1/users/models/user_earnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/models/user_earnings.py -------------------------------------------------------------------------------- /v1/users/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/users/serializers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/serializers/user.py -------------------------------------------------------------------------------- /v1/users/serializers/user_earnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/serializers/user_earnings.py -------------------------------------------------------------------------------- /v1/users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/users/tests/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/tests/user.py -------------------------------------------------------------------------------- /v1/users/tests/user_earnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/tests/user_earnings.py -------------------------------------------------------------------------------- /v1/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/urls.py -------------------------------------------------------------------------------- /v1/users/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/users/views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/views/user.py -------------------------------------------------------------------------------- /v1/users/views/user_earnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/users/views/user_earnings.py -------------------------------------------------------------------------------- /v1/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/utils/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/utils/threading.py -------------------------------------------------------------------------------- /v1/utils/verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/utils/verification.py -------------------------------------------------------------------------------- /v1/videos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/videos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/admin.py -------------------------------------------------------------------------------- /v1/videos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/apps.py -------------------------------------------------------------------------------- /v1/videos/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/videos/factories/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/factories/video.py -------------------------------------------------------------------------------- /v1/videos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/migrations/0001_initial.py -------------------------------------------------------------------------------- /v1/videos/migrations/0002_auto_20210211_0437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/migrations/0002_auto_20210211_0437.py -------------------------------------------------------------------------------- /v1/videos/migrations/0003_auto_20210211_0627.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/migrations/0003_auto_20210211_0627.py -------------------------------------------------------------------------------- /v1/videos/migrations/0004_auto_20210324_0620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/migrations/0004_auto_20210324_0620.py -------------------------------------------------------------------------------- /v1/videos/migrations/0005_auto_20210327_1802.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/migrations/0005_auto_20210327_1802.py -------------------------------------------------------------------------------- /v1/videos/migrations/0006_auto_20210331_0543.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/migrations/0006_auto_20210331_0543.py -------------------------------------------------------------------------------- /v1/videos/migrations/0007_auto_20210513_0658.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/migrations/0007_auto_20210513_0658.py -------------------------------------------------------------------------------- /v1/videos/migrations/0008_playlist_is_featured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/migrations/0008_playlist_is_featured.py -------------------------------------------------------------------------------- /v1/videos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/videos/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/videos/models/instructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/models/instructor.py -------------------------------------------------------------------------------- /v1/videos/models/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/models/playlist.py -------------------------------------------------------------------------------- /v1/videos/models/playlist_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/models/playlist_category.py -------------------------------------------------------------------------------- /v1/videos/models/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/models/video.py -------------------------------------------------------------------------------- /v1/videos/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/videos/serializers/instructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/serializers/instructor.py -------------------------------------------------------------------------------- /v1/videos/serializers/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/serializers/playlist.py -------------------------------------------------------------------------------- /v1/videos/serializers/playlist_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/serializers/playlist_category.py -------------------------------------------------------------------------------- /v1/videos/serializers/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/serializers/video.py -------------------------------------------------------------------------------- /v1/videos/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/videos/tests/instructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/tests/instructor.py -------------------------------------------------------------------------------- /v1/videos/tests/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/tests/playlist.py -------------------------------------------------------------------------------- /v1/videos/tests/playlist_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/tests/playlist_category.py -------------------------------------------------------------------------------- /v1/videos/tests/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/tests/video.py -------------------------------------------------------------------------------- /v1/videos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/urls.py -------------------------------------------------------------------------------- /v1/videos/views/instructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/views/instructor.py -------------------------------------------------------------------------------- /v1/videos/views/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/views/playlist.py -------------------------------------------------------------------------------- /v1/videos/views/playlist_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/views/playlist_category.py -------------------------------------------------------------------------------- /v1/videos/views/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenewboston-blockchain/Website-API/HEAD/v1/videos/views/video.py --------------------------------------------------------------------------------