├── .circleci └── config.yml ├── .editorconfig ├── .envrc.sample ├── .github └── pull_request_template.md ├── .gitignore ├── .node-version ├── .python-version ├── Dockerfile ├── README.md ├── add_master_data.sh ├── api-template.yaml ├── api-with-oauth-template.yaml ├── apialarms-template.yaml ├── cloudfront-template.yaml ├── cognito-template.yaml ├── create_resource_groups.sh ├── database-template.yaml ├── database.yaml ├── deploy.sh ├── deploy_api.sh ├── deploy_api_function.py ├── deploy_cloudfront.sh ├── docker-compose.yml ├── elasticsearch-setup.py ├── elasticsearch-template.yaml ├── exec_test.py ├── fix_api.sh ├── fix_configurations.sh ├── function-template.yaml ├── function02-template.yaml ├── make_deploy_zip.py ├── misc ├── delete_all_items.py └── topics.json ├── package.json ├── packaging.sh ├── permission-template.yaml ├── requirements.txt ├── requirements_test.txt ├── serverless.yml ├── setup.cfg ├── src ├── common │ ├── authlete_util.py │ ├── cognito_trigger_base.py │ ├── crypto_util.py │ ├── db_util.py │ ├── decimal_encoder.py │ ├── es_util.py │ ├── exceptions.py │ ├── facebook_util.py │ ├── lambda_base.py │ ├── nft_games_info.py │ ├── no_permission_error.py │ ├── nonce_util.py │ ├── not_authorized_error.py │ ├── not_verified_user_error.py │ ├── notification_util.py │ ├── parameter_util.py │ ├── private_chain_util.py │ ├── record_not_found_error.py │ ├── response_builder.py │ ├── rsa_algorithm.py │ ├── settings.py │ ├── tag_util.py │ ├── text_sanitizer.py │ ├── time_util.py │ ├── twitter_util.py │ ├── user_util.py │ ├── web3_util.py │ └── yahoo_util.py └── handlers │ ├── applications │ └── show │ │ ├── applications_show.py │ │ └── handler.py │ ├── articles │ ├── alis_tokens │ │ └── show │ │ │ ├── articles_alis_tokens_show.py │ │ │ └── handler.py │ ├── comments │ │ └── index │ │ │ ├── articles_comments_index.py │ │ │ └── handler.py │ ├── eyecatch │ │ ├── articles_eyecatch.py │ │ └── handler.py │ ├── likes │ │ └── show │ │ │ ├── articles_likes_show.py │ │ │ └── handler.py │ ├── popular │ │ ├── articles_popular.py │ │ └── handler.py │ ├── price │ │ └── show │ │ │ ├── articles_price_show.py │ │ │ └── handler.py │ ├── recent │ │ ├── articles_recent.py │ │ └── handler.py │ ├── recommended │ │ ├── articles_recommended.py │ │ └── handler.py │ ├── show │ │ ├── articles_show.py │ │ └── handler.py │ ├── supporters │ │ └── index │ │ │ ├── articles_supporters_index.py │ │ │ └── handler.py │ └── tip_ranking │ │ ├── articles_tip_ranking.py │ │ └── handler.py │ ├── authorizer │ ├── authorizer.py │ └── handler.py │ ├── cognito_trigger │ ├── custommessage │ │ ├── custom_message.py │ │ └── handler.py │ ├── postconfirmation │ │ ├── handler.py │ │ └── post_confirmation.py │ ├── preauthentication │ │ ├── handler.py │ │ └── pre_authentication.py │ └── presignup │ │ ├── handler.py │ │ └── pre_signup.py │ ├── comments │ └── likes │ │ └── show │ │ ├── comments_likes_show.py │ │ └── handler.py │ ├── labo │ └── n │ │ ├── license_token │ │ ├── file_download_url │ │ │ ├── handler.py │ │ │ └── license_token_file_download_url.py │ │ └── file_upload_url │ │ │ ├── handler.py │ │ │ └── license_token_file_upload_url.py │ │ ├── majority_judgement │ │ ├── create │ │ │ ├── handler.py │ │ │ └── majority_judgement_create.py │ │ ├── delete_all │ │ │ ├── handler.py │ │ │ └── majority_judgement_delete_all.py │ │ └── index │ │ │ ├── handler.py │ │ │ └── majority_judgement_index.py │ │ ├── quadratic_voting │ │ ├── create │ │ │ ├── handler.py │ │ │ └── quadratic_voting_create.py │ │ └── index │ │ │ ├── handler.py │ │ │ └── quadratic_voting_index.py │ │ └── random │ │ ├── article.py │ │ └── handler.py │ ├── login │ ├── facebook │ │ ├── authorization_url │ │ │ ├── handler.py │ │ │ └── login_facebook_authorization_url.py │ │ └── index │ │ │ ├── handler.py │ │ │ └── login_facebook_index.py │ ├── line │ │ ├── authorize_request │ │ │ ├── handler.py │ │ │ └── login_line_authorize_request.py │ │ └── authorize_url │ │ │ ├── handler.py │ │ │ └── login_line_authorize_url.py │ ├── twitter │ │ ├── authorization_url │ │ │ ├── handler.py │ │ │ └── login_twitter_authorization_url.py │ │ └── index │ │ │ ├── handler.py │ │ │ └── login_twitter_index.py │ └── yahoo │ │ ├── authorization_url │ │ ├── handler.py │ │ └── login_yahoo_authorization_url.py │ │ └── index │ │ ├── handler.py │ │ └── login_yahoo_index.py │ ├── me │ ├── allowed_applications │ │ ├── delete │ │ │ ├── handler.py │ │ │ └── me_allowed_applications_delete.py │ │ └── index │ │ │ ├── handler.py │ │ │ └── me_allowed_applications_index.py │ ├── applications │ │ ├── create │ │ │ ├── handler.py │ │ │ └── me_applications_create.py │ │ ├── delete │ │ │ ├── handler.py │ │ │ └── me_applications_delete.py │ │ ├── index │ │ │ ├── handler.py │ │ │ └── me_applications_index.py │ │ ├── show │ │ │ ├── handler.py │ │ │ └── me_applications_show.py │ │ └── update │ │ │ ├── handler.py │ │ │ └── me_applications_update.py │ ├── articles │ │ ├── comments │ │ │ ├── create │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_comments_create.py │ │ │ ├── likes │ │ │ │ └── index │ │ │ │ │ ├── handler.py │ │ │ │ │ └── me_articles_comments_likes_index.py │ │ │ └── reply │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_comments_reply.py │ │ ├── content_edit_histories │ │ │ └── index │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_content_edit_histories_index.py │ │ ├── drafts │ │ │ ├── article_id │ │ │ │ └── create │ │ │ │ │ ├── handler.py │ │ │ │ │ └── me_articles_drafts_article_id_create.py │ │ │ ├── body │ │ │ │ └── update │ │ │ │ │ ├── handler.py │ │ │ │ │ └── me_articles_drafts_body_update.py │ │ │ ├── create │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_drafts_create.py │ │ │ ├── delete │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_drafts_delete.py │ │ │ ├── index │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_drafts_index.py │ │ │ ├── publish │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_drafts_publish.py │ │ │ ├── publish_with_header │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_drafts_publish_with_header.py │ │ │ ├── show │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_drafts_show.py │ │ │ ├── title │ │ │ │ └── update │ │ │ │ │ ├── handler.py │ │ │ │ │ └── me_articles_drafts_title_update.py │ │ │ └── update │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_drafts_update.py │ │ ├── fraud │ │ │ └── create │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_fraud_create.py │ │ ├── image_upload_url │ │ │ └── show │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_image_upload_url_show.py │ │ ├── images │ │ │ └── create │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_images_create.py │ │ ├── like │ │ │ ├── create │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_like_create.py │ │ │ └── show │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_like_show.py │ │ ├── public │ │ │ ├── body │ │ │ │ └── update │ │ │ │ │ ├── handler.py │ │ │ │ │ └── me_articles_public_body_update.py │ │ │ ├── edit │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_public_edit.py │ │ │ ├── index │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_public_index.py │ │ │ ├── republish │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_public_republish.py │ │ │ ├── republish_with_header │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_public_republish_with_header.py │ │ │ ├── show │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_public_show.py │ │ │ ├── title │ │ │ │ └── update │ │ │ │ │ ├── handler.py │ │ │ │ │ └── me_articles_public_title_update.py │ │ │ ├── unpublish │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_public_unpublish.py │ │ │ └── update │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_public_update.py │ │ ├── purchase │ │ │ └── create │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_purchase_create.py │ │ ├── purchased │ │ │ ├── article_ids │ │ │ │ └── index │ │ │ │ │ ├── handler.py │ │ │ │ │ └── me_articles_purchased_article_ids_index.py │ │ │ ├── index │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_purchased_index.py │ │ │ └── show │ │ │ │ ├── handler.py │ │ │ │ └── me_articles_purchased_show.py │ │ └── pv │ │ │ └── create │ │ │ ├── handler.py │ │ │ └── me_articles_pv_create.py │ ├── comments │ │ ├── delete │ │ │ ├── handler.py │ │ │ └── me_comments_delete.py │ │ └── likes │ │ │ └── create │ │ │ ├── handler.py │ │ │ └── me_comments_likes_create.py │ ├── configurations │ │ ├── mute_users │ │ │ ├── add │ │ │ │ ├── handler.py │ │ │ │ └── me_configurations_mute_users_add.py │ │ │ ├── delete │ │ │ │ ├── handler.py │ │ │ │ └── me_configurations_mute_users_delete.py │ │ │ └── index │ │ │ │ ├── handler.py │ │ │ │ └── me_configurations_mute_users_index.py │ │ └── wallet │ │ │ ├── add │ │ │ ├── handler.py │ │ │ └── me_configurations_wallet_add.py │ │ │ └── show │ │ │ ├── handler.py │ │ │ └── me_configurations_wallet_show.py │ ├── external_provider_user │ │ └── create │ │ │ ├── handler.py │ │ │ └── me_external_provider_user_create.py │ ├── info │ │ ├── first_experiences │ │ │ └── update │ │ │ │ ├── handler.py │ │ │ │ └── me_info_first_experiences_update.py │ │ ├── icon │ │ │ └── create │ │ │ │ ├── handler.py │ │ │ │ └── me_info_icon_create.py │ │ ├── show │ │ │ ├── handler.py │ │ │ └── me_info_show.py │ │ └── update │ │ │ ├── handler.py │ │ │ └── me_info_update.py │ ├── notifications │ │ └── index │ │ │ ├── handler.py │ │ │ └── me_notifications_index.py │ ├── unread_notification_managers │ │ ├── show │ │ │ ├── handler.py │ │ │ └── me_unread_notification_managers_show.py │ │ └── update │ │ │ ├── handler.py │ │ │ └── me_unread_notification_managers_update.py │ ├── users │ │ └── fraud │ │ │ └── create │ │ │ ├── handler.py │ │ │ └── me_users_fraud_create.py │ └── wallet │ │ ├── allowance │ │ └── show │ │ │ ├── handler.py │ │ │ └── me_wallet_allowance_show.py │ │ ├── balance │ │ ├── handler.py │ │ └── me_wallet_balance.py │ │ ├── distributed_tokens │ │ └── show │ │ │ ├── handler.py │ │ │ └── me_wallet_distributed_tokens_show.py │ │ ├── nonce │ │ └── show │ │ │ ├── handler.py │ │ │ └── me_wallet_nonce_show.py │ │ ├── tip │ │ ├── handler.py │ │ └── me_wallet_tip.py │ │ └── token │ │ ├── allhistories │ │ └── create │ │ │ ├── handler.py │ │ │ └── me_wallet_token_allhistories_create.py │ │ ├── histories │ │ └── index │ │ │ ├── handler.py │ │ │ └── me_wallet_token_histories_index.py │ │ └── send │ │ ├── handler.py │ │ └── me_wallet_token_send.py │ ├── search │ ├── articles │ │ ├── handler.py │ │ └── search_articles.py │ ├── tags │ │ ├── handler.py │ │ └── search_tags.py │ ├── tags_count │ │ ├── handler.py │ │ └── search_tags_count.py │ └── users │ │ ├── handler.py │ │ └── search_users.py │ ├── sign_up │ └── line │ │ └── authorize_url │ │ ├── handler.py │ │ └── sign_up_line_authorize_url.py │ ├── topics │ ├── crypto │ │ └── ranking │ │ │ └── index │ │ │ ├── handler.py │ │ │ └── topics_crypto_ranking_index.py │ ├── game │ │ └── nft_games │ │ │ ├── ranking │ │ │ └── index │ │ │ │ ├── handler.py │ │ │ │ └── topics_game_nft_games_ranking_index.py │ │ │ └── show │ │ │ ├── handler.py │ │ │ └── topics_game_nft_games_show.py │ └── index │ │ ├── handler.py │ │ └── topics_index.py │ ├── users │ ├── articles │ │ ├── popular │ │ │ ├── handler.py │ │ │ └── users_articles_popular.py │ │ └── public │ │ │ ├── handler.py │ │ │ └── users_articles_public.py │ ├── info │ │ └── show │ │ │ ├── handler.py │ │ │ └── users_info_show.py │ └── wallet │ │ └── address │ │ └── show │ │ ├── handler.py │ │ └── users_wallet_address_show.py │ └── wallet │ └── bridge_information │ └── show │ ├── handler.py │ └── wallet_bridge_information_show.py ├── swagger ├── custom-auth-swagger.yaml └── swagger.yaml └── tests ├── common ├── test_authlete_util.py ├── test_cognito_trigger_base.py ├── test_crypto_util.py ├── test_db_util.py ├── test_es_util.py ├── test_facebook_util.py ├── test_lambda_base.py ├── test_nonce_util.py ├── test_notification_util.py ├── test_parameter_util.py ├── test_private_chain_util.py ├── test_tag_util.py ├── test_text_sanitizer.py ├── test_time_util.py ├── test_twitter_util.py ├── test_user_util.py ├── test_web3_util.py └── test_yahoo_util.py ├── handlers ├── applications │ └── show │ │ └── test_applications_show.py ├── articles │ ├── alis_tokens │ │ └── show │ │ │ └── test_articles_alis_tokens_show.py │ ├── comments │ │ └── index │ │ │ └── test_articles_comments_index.py │ ├── eyecatch │ │ └── test_articles_eyecatch.py │ ├── likes │ │ └── show │ │ │ └── test_articles_likes_show.py │ ├── popular │ │ └── test_articles_popular.py │ ├── price │ │ └── show │ │ │ └── test_articles_price_show.py │ ├── recent │ │ └── test_articles_recent.py │ ├── recommended │ │ └── test_articles_recommended.py │ ├── show │ │ └── test_articles_show.py │ ├── supporters │ │ └── index │ │ │ └── test_articles_supporters_index.py │ └── tip_ranking │ │ └── test_articles_tip_ranking.py ├── authorizer │ └── test_authorizer.py ├── cognito_trigger │ ├── custommessage │ │ └── test_custom_message.py │ ├── postconfirmation │ │ └── test_post_confirmation.py │ ├── preauthentication │ │ └── test_pre_authentication.py │ └── presignup │ │ └── test_pre_signup.py ├── comments │ └── likes │ │ └── show │ │ └── test_comments_likes_show.py ├── login │ ├── facebook │ │ ├── authorization_url │ │ │ └── test_login_facebook_authorization_url.py │ │ └── index │ │ │ └── test_login_facebook_index.py │ ├── line │ │ ├── authorize_request │ │ │ └── test_login_line_authorize_request.py │ │ └── authorize_url │ │ │ └── test_login_line_authorize_url.py │ ├── twitter │ │ ├── authorization_url │ │ │ └── test_login_twitter_authorization_url.py │ │ └── index │ │ │ └── test_login_twitter_index.py │ └── yahoo │ │ ├── authorization_url │ │ └── test_login_yahoo_authorization_url.py │ │ └── index │ │ └── test_login_yahoo_index.py ├── me │ ├── allowed_applications │ │ ├── delete │ │ │ └── test_me_allowed_applications_delete.py │ │ └── index │ │ │ └── test_me_allowed_applications_index.py │ ├── applications │ │ ├── create │ │ │ └── test_me_applications_create.py │ │ ├── delete │ │ │ └── test_me_applications_delete.py │ │ ├── index │ │ │ └── test_me_applications_index.py │ │ ├── show │ │ │ └── test_me_applications_show.py │ │ └── update │ │ │ └── test_me_applications_update.py │ ├── articles │ │ ├── comments │ │ │ ├── create │ │ │ │ └── test_me_articles_comments_create.py │ │ │ ├── likes │ │ │ │ └── index │ │ │ │ │ └── test_me_articles_comments_likes_index.py │ │ │ └── reply │ │ │ │ └── test_me_articles_comments_reply.py │ │ ├── content_edit_histories │ │ │ └── index │ │ │ │ └── test_me_articles_content_edit_histories_index.py │ │ ├── drafts │ │ │ ├── article_id │ │ │ │ └── create │ │ │ │ │ └── test_me_article_drafts_article_id_create.py │ │ │ ├── body │ │ │ │ └── update │ │ │ │ │ └── test_me_articles_drafts_body_update.py │ │ │ ├── create │ │ │ │ └── test_me_article_drafts_create.py │ │ │ ├── delete │ │ │ │ └── test_me_articles_drafts_delete.py │ │ │ ├── index │ │ │ │ └── test_me_article_drafts_index.py │ │ │ ├── publish │ │ │ │ └── test_me_articles_drafts_publish.py │ │ │ ├── publish_with_header │ │ │ │ └── test_me_articles_drafts_publish_with_header.py │ │ │ ├── show │ │ │ │ └── test_me_articles_drafts_show.py │ │ │ ├── title │ │ │ │ └── update │ │ │ │ │ └── test_me_articles_drafts_title_update.py │ │ │ └── update │ │ │ │ └── test_me_articles_drafts_update.py │ │ ├── fraud │ │ │ └── create │ │ │ │ └── test_me_articles_fraud_create.py │ │ ├── image_upload_url │ │ │ └── show │ │ │ │ └── test_me_articles_image_upload_url_show.py │ │ ├── images │ │ │ └── create │ │ │ │ └── test_me_articles_images_create.py │ │ ├── like │ │ │ ├── create │ │ │ │ └── test_me_articles_like_create.py │ │ │ └── show │ │ │ │ └── test_me_articles_like_show.py │ │ ├── public │ │ │ ├── body │ │ │ │ └── update │ │ │ │ │ └── test_me_articles_public_body_update.py │ │ │ ├── edit │ │ │ │ └── test_me_articles_public_edit.py │ │ │ ├── index │ │ │ │ └── test_me_articles_public_index.py │ │ │ ├── republish │ │ │ │ └── test_me_articles_public_republish.py │ │ │ ├── republish_with_header │ │ │ │ └── test_me_articles_public_republish_with_header.py │ │ │ ├── show │ │ │ │ └── test_me_articles_public_show.py │ │ │ ├── title │ │ │ │ └── update │ │ │ │ │ └── test_me_articles_public_title_update.py │ │ │ ├── unpublish │ │ │ │ └── test_me_articles_public_unpublish.py │ │ │ └── update │ │ │ │ └── test_me_articles_public_update.py │ │ ├── purchase │ │ │ └── create │ │ │ │ └── test_me_articles_purchase_create.py │ │ ├── purchased │ │ │ ├── article_ids │ │ │ │ └── index │ │ │ │ │ └── test_me_articles_purchased_article_ids_index.py │ │ │ ├── index │ │ │ │ └── test_me_articles_purchased_index.py │ │ │ └── show │ │ │ │ └── test_me_articles_purchased_show.py │ │ └── pv │ │ │ └── create │ │ │ └── test_me_articles_pv_create.py │ ├── comments │ │ ├── delete │ │ │ └── test_me_comments_delete.py │ │ └── likes │ │ │ └── create │ │ │ └── test_me_comments_likes_create.py │ ├── configurations │ │ ├── mute_users │ │ │ ├── add │ │ │ │ └── test_me_configurations_mute_users_add.py │ │ │ ├── delete │ │ │ │ └── test_me_configurations_mute_users_delete.py │ │ │ └── index │ │ │ │ └── test_me_configurations_mute_users_index.py │ │ └── wallet │ │ │ ├── add │ │ │ └── test_me_configurations_wallet_add.py │ │ │ └── show │ │ │ └── test_me_configurations_wallet_show.py │ ├── external_provider_user │ │ └── create │ │ │ └── test_me_external_provider_user_create.py │ ├── info │ │ ├── first_experiences │ │ │ └── update │ │ │ │ └── test_me_info_first_experiences_update.py │ │ ├── icon │ │ │ └── create │ │ │ │ └── test_me_info_icon_create.py │ │ ├── show │ │ │ └── test_me_info_show.py │ │ └── update │ │ │ └── test_me_info_update.py │ ├── notifications │ │ └── index │ │ │ └── test_me_notifications_index.py │ ├── unread_notification_managers │ │ ├── show │ │ │ └── test_me_unread_notification_managers_show.py │ │ └── update │ │ │ └── test_me_unread_notification_managers_update.py │ ├── users │ │ └── fraud │ │ │ └── create │ │ │ └── test_me_users_fraud_create.py │ └── wallet │ │ ├── allowance │ │ └── show │ │ │ └── test_me_wallet_allowance_show.py │ │ ├── balance │ │ ├── README.md │ │ └── test_me_wallet_blance.py │ │ ├── distributed_tokens │ │ └── show │ │ │ └── test_me_wallet_distributed_tokens_show.py │ │ ├── nonce │ │ └── show │ │ │ └── test_me_wallet_nonce_show.py │ │ ├── tip │ │ ├── README.md │ │ └── test_me_wallet_tip.py │ │ └── token │ │ ├── allhistories │ │ └── create │ │ │ └── test_me_wallet_token_allhistories_create.py │ │ ├── histories │ │ └── index │ │ │ └── test_me_wallet_token_histories_index.py │ │ └── send │ │ └── test_me_wallet_token_send.py ├── search │ ├── articles │ │ └── test_search_articles.py │ ├── tags │ │ └── test_search_tags.py │ ├── tags_count │ │ └── test_search_tags_count.py │ └── users │ │ └── test_search_users.py ├── sign_up │ └── line │ │ └── authorize_url │ │ └── test_sign_up_line_authorize_url.py ├── topics │ ├── crypto │ │ └── ranking │ │ │ └── index │ │ │ └── test_crypto_ranking_index.py │ ├── game │ │ └── nft_games │ │ │ ├── ranking │ │ │ └── index │ │ │ │ └── test_topics_game_nft_games_ranking_index.py │ │ │ └── show │ │ │ └── test_topics_game_nft_games_show.py │ └── index │ │ └── test_topics_index.py ├── users │ ├── articles │ │ ├── popular │ │ │ └── test_users_articles_popular.py │ │ └── public │ │ │ └── test_users_articles_public.py │ ├── info │ │ └── show │ │ │ └── test_users_info_show.py │ └── wallet │ │ └── address │ │ └── show │ │ └── test_users_wallet_address_show.py └── wallet │ └── bridge_information │ └── show │ └── test_wallet_bridge_information_show.py └── tests_common ├── tests_es_util.py └── tests_util.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/.envrc.sample -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v12.4.0 2 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.9.13 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/README.md -------------------------------------------------------------------------------- /add_master_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/add_master_data.sh -------------------------------------------------------------------------------- /api-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/api-template.yaml -------------------------------------------------------------------------------- /api-with-oauth-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/api-with-oauth-template.yaml -------------------------------------------------------------------------------- /apialarms-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/apialarms-template.yaml -------------------------------------------------------------------------------- /cloudfront-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/cloudfront-template.yaml -------------------------------------------------------------------------------- /cognito-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/cognito-template.yaml -------------------------------------------------------------------------------- /create_resource_groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/create_resource_groups.sh -------------------------------------------------------------------------------- /database-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/database-template.yaml -------------------------------------------------------------------------------- /database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/database.yaml -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/deploy_api.sh -------------------------------------------------------------------------------- /deploy_api_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/deploy_api_function.py -------------------------------------------------------------------------------- /deploy_cloudfront.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/deploy_cloudfront.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /elasticsearch-setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/elasticsearch-setup.py -------------------------------------------------------------------------------- /elasticsearch-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/elasticsearch-template.yaml -------------------------------------------------------------------------------- /exec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/exec_test.py -------------------------------------------------------------------------------- /fix_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/fix_api.sh -------------------------------------------------------------------------------- /fix_configurations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/fix_configurations.sh -------------------------------------------------------------------------------- /function-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/function-template.yaml -------------------------------------------------------------------------------- /function02-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/function02-template.yaml -------------------------------------------------------------------------------- /make_deploy_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/make_deploy_zip.py -------------------------------------------------------------------------------- /misc/delete_all_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/misc/delete_all_items.py -------------------------------------------------------------------------------- /misc/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/misc/topics.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/package.json -------------------------------------------------------------------------------- /packaging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/packaging.sh -------------------------------------------------------------------------------- /permission-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/permission-template.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/serverless.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [pycodestyle] 2 | max-line-length = 128 3 | -------------------------------------------------------------------------------- /src/common/authlete_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/authlete_util.py -------------------------------------------------------------------------------- /src/common/cognito_trigger_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/cognito_trigger_base.py -------------------------------------------------------------------------------- /src/common/crypto_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/crypto_util.py -------------------------------------------------------------------------------- /src/common/db_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/db_util.py -------------------------------------------------------------------------------- /src/common/decimal_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/decimal_encoder.py -------------------------------------------------------------------------------- /src/common/es_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/es_util.py -------------------------------------------------------------------------------- /src/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/exceptions.py -------------------------------------------------------------------------------- /src/common/facebook_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/facebook_util.py -------------------------------------------------------------------------------- /src/common/lambda_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/lambda_base.py -------------------------------------------------------------------------------- /src/common/nft_games_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/nft_games_info.py -------------------------------------------------------------------------------- /src/common/no_permission_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/no_permission_error.py -------------------------------------------------------------------------------- /src/common/nonce_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/nonce_util.py -------------------------------------------------------------------------------- /src/common/not_authorized_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/not_authorized_error.py -------------------------------------------------------------------------------- /src/common/not_verified_user_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/not_verified_user_error.py -------------------------------------------------------------------------------- /src/common/notification_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/notification_util.py -------------------------------------------------------------------------------- /src/common/parameter_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/parameter_util.py -------------------------------------------------------------------------------- /src/common/private_chain_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/private_chain_util.py -------------------------------------------------------------------------------- /src/common/record_not_found_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/record_not_found_error.py -------------------------------------------------------------------------------- /src/common/response_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/response_builder.py -------------------------------------------------------------------------------- /src/common/rsa_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/rsa_algorithm.py -------------------------------------------------------------------------------- /src/common/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/settings.py -------------------------------------------------------------------------------- /src/common/tag_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/tag_util.py -------------------------------------------------------------------------------- /src/common/text_sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/text_sanitizer.py -------------------------------------------------------------------------------- /src/common/time_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/time_util.py -------------------------------------------------------------------------------- /src/common/twitter_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/twitter_util.py -------------------------------------------------------------------------------- /src/common/user_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/user_util.py -------------------------------------------------------------------------------- /src/common/web3_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/web3_util.py -------------------------------------------------------------------------------- /src/common/yahoo_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/common/yahoo_util.py -------------------------------------------------------------------------------- /src/handlers/applications/show/applications_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/applications/show/applications_show.py -------------------------------------------------------------------------------- /src/handlers/applications/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/applications/show/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/alis_tokens/show/articles_alis_tokens_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/alis_tokens/show/articles_alis_tokens_show.py -------------------------------------------------------------------------------- /src/handlers/articles/alis_tokens/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/alis_tokens/show/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/comments/index/articles_comments_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/comments/index/articles_comments_index.py -------------------------------------------------------------------------------- /src/handlers/articles/comments/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/comments/index/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/eyecatch/articles_eyecatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/eyecatch/articles_eyecatch.py -------------------------------------------------------------------------------- /src/handlers/articles/eyecatch/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/eyecatch/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/likes/show/articles_likes_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/likes/show/articles_likes_show.py -------------------------------------------------------------------------------- /src/handlers/articles/likes/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/likes/show/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/popular/articles_popular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/popular/articles_popular.py -------------------------------------------------------------------------------- /src/handlers/articles/popular/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/popular/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/price/show/articles_price_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/price/show/articles_price_show.py -------------------------------------------------------------------------------- /src/handlers/articles/price/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/price/show/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/recent/articles_recent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/recent/articles_recent.py -------------------------------------------------------------------------------- /src/handlers/articles/recent/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/recent/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/recommended/articles_recommended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/recommended/articles_recommended.py -------------------------------------------------------------------------------- /src/handlers/articles/recommended/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/recommended/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/show/articles_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/show/articles_show.py -------------------------------------------------------------------------------- /src/handlers/articles/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/show/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/supporters/index/articles_supporters_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/supporters/index/articles_supporters_index.py -------------------------------------------------------------------------------- /src/handlers/articles/supporters/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/supporters/index/handler.py -------------------------------------------------------------------------------- /src/handlers/articles/tip_ranking/articles_tip_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/tip_ranking/articles_tip_ranking.py -------------------------------------------------------------------------------- /src/handlers/articles/tip_ranking/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/articles/tip_ranking/handler.py -------------------------------------------------------------------------------- /src/handlers/authorizer/authorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/authorizer/authorizer.py -------------------------------------------------------------------------------- /src/handlers/authorizer/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/authorizer/handler.py -------------------------------------------------------------------------------- /src/handlers/cognito_trigger/custommessage/custom_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/cognito_trigger/custommessage/custom_message.py -------------------------------------------------------------------------------- /src/handlers/cognito_trigger/custommessage/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/cognito_trigger/custommessage/handler.py -------------------------------------------------------------------------------- /src/handlers/cognito_trigger/postconfirmation/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/cognito_trigger/postconfirmation/handler.py -------------------------------------------------------------------------------- /src/handlers/cognito_trigger/postconfirmation/post_confirmation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/cognito_trigger/postconfirmation/post_confirmation.py -------------------------------------------------------------------------------- /src/handlers/cognito_trigger/preauthentication/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/cognito_trigger/preauthentication/handler.py -------------------------------------------------------------------------------- /src/handlers/cognito_trigger/preauthentication/pre_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/cognito_trigger/preauthentication/pre_authentication.py -------------------------------------------------------------------------------- /src/handlers/cognito_trigger/presignup/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/cognito_trigger/presignup/handler.py -------------------------------------------------------------------------------- /src/handlers/cognito_trigger/presignup/pre_signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/cognito_trigger/presignup/pre_signup.py -------------------------------------------------------------------------------- /src/handlers/comments/likes/show/comments_likes_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/comments/likes/show/comments_likes_show.py -------------------------------------------------------------------------------- /src/handlers/comments/likes/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/comments/likes/show/handler.py -------------------------------------------------------------------------------- /src/handlers/labo/n/license_token/file_download_url/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/license_token/file_download_url/handler.py -------------------------------------------------------------------------------- /src/handlers/labo/n/license_token/file_download_url/license_token_file_download_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/license_token/file_download_url/license_token_file_download_url.py -------------------------------------------------------------------------------- /src/handlers/labo/n/license_token/file_upload_url/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/license_token/file_upload_url/handler.py -------------------------------------------------------------------------------- /src/handlers/labo/n/license_token/file_upload_url/license_token_file_upload_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/license_token/file_upload_url/license_token_file_upload_url.py -------------------------------------------------------------------------------- /src/handlers/labo/n/majority_judgement/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/majority_judgement/create/handler.py -------------------------------------------------------------------------------- /src/handlers/labo/n/majority_judgement/create/majority_judgement_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/majority_judgement/create/majority_judgement_create.py -------------------------------------------------------------------------------- /src/handlers/labo/n/majority_judgement/delete_all/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/majority_judgement/delete_all/handler.py -------------------------------------------------------------------------------- /src/handlers/labo/n/majority_judgement/delete_all/majority_judgement_delete_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/majority_judgement/delete_all/majority_judgement_delete_all.py -------------------------------------------------------------------------------- /src/handlers/labo/n/majority_judgement/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/majority_judgement/index/handler.py -------------------------------------------------------------------------------- /src/handlers/labo/n/majority_judgement/index/majority_judgement_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/majority_judgement/index/majority_judgement_index.py -------------------------------------------------------------------------------- /src/handlers/labo/n/quadratic_voting/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/quadratic_voting/create/handler.py -------------------------------------------------------------------------------- /src/handlers/labo/n/quadratic_voting/create/quadratic_voting_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/quadratic_voting/create/quadratic_voting_create.py -------------------------------------------------------------------------------- /src/handlers/labo/n/quadratic_voting/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/quadratic_voting/index/handler.py -------------------------------------------------------------------------------- /src/handlers/labo/n/quadratic_voting/index/quadratic_voting_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/quadratic_voting/index/quadratic_voting_index.py -------------------------------------------------------------------------------- /src/handlers/labo/n/random/article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/random/article.py -------------------------------------------------------------------------------- /src/handlers/labo/n/random/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/labo/n/random/handler.py -------------------------------------------------------------------------------- /src/handlers/login/facebook/authorization_url/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/facebook/authorization_url/handler.py -------------------------------------------------------------------------------- /src/handlers/login/facebook/authorization_url/login_facebook_authorization_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/facebook/authorization_url/login_facebook_authorization_url.py -------------------------------------------------------------------------------- /src/handlers/login/facebook/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/facebook/index/handler.py -------------------------------------------------------------------------------- /src/handlers/login/facebook/index/login_facebook_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/facebook/index/login_facebook_index.py -------------------------------------------------------------------------------- /src/handlers/login/line/authorize_request/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/line/authorize_request/handler.py -------------------------------------------------------------------------------- /src/handlers/login/line/authorize_request/login_line_authorize_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/line/authorize_request/login_line_authorize_request.py -------------------------------------------------------------------------------- /src/handlers/login/line/authorize_url/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/line/authorize_url/handler.py -------------------------------------------------------------------------------- /src/handlers/login/line/authorize_url/login_line_authorize_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/line/authorize_url/login_line_authorize_url.py -------------------------------------------------------------------------------- /src/handlers/login/twitter/authorization_url/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/twitter/authorization_url/handler.py -------------------------------------------------------------------------------- /src/handlers/login/twitter/authorization_url/login_twitter_authorization_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/twitter/authorization_url/login_twitter_authorization_url.py -------------------------------------------------------------------------------- /src/handlers/login/twitter/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/twitter/index/handler.py -------------------------------------------------------------------------------- /src/handlers/login/twitter/index/login_twitter_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/twitter/index/login_twitter_index.py -------------------------------------------------------------------------------- /src/handlers/login/yahoo/authorization_url/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/yahoo/authorization_url/handler.py -------------------------------------------------------------------------------- /src/handlers/login/yahoo/authorization_url/login_yahoo_authorization_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/yahoo/authorization_url/login_yahoo_authorization_url.py -------------------------------------------------------------------------------- /src/handlers/login/yahoo/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/yahoo/index/handler.py -------------------------------------------------------------------------------- /src/handlers/login/yahoo/index/login_yahoo_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/login/yahoo/index/login_yahoo_index.py -------------------------------------------------------------------------------- /src/handlers/me/allowed_applications/delete/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/allowed_applications/delete/handler.py -------------------------------------------------------------------------------- /src/handlers/me/allowed_applications/delete/me_allowed_applications_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/allowed_applications/delete/me_allowed_applications_delete.py -------------------------------------------------------------------------------- /src/handlers/me/allowed_applications/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/allowed_applications/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/allowed_applications/index/me_allowed_applications_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/allowed_applications/index/me_allowed_applications_index.py -------------------------------------------------------------------------------- /src/handlers/me/applications/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/applications/create/me_applications_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/create/me_applications_create.py -------------------------------------------------------------------------------- /src/handlers/me/applications/delete/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/delete/handler.py -------------------------------------------------------------------------------- /src/handlers/me/applications/delete/me_applications_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/delete/me_applications_delete.py -------------------------------------------------------------------------------- /src/handlers/me/applications/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/applications/index/me_applications_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/index/me_applications_index.py -------------------------------------------------------------------------------- /src/handlers/me/applications/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/applications/show/me_applications_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/show/me_applications_show.py -------------------------------------------------------------------------------- /src/handlers/me/applications/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/applications/update/me_applications_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/applications/update/me_applications_update.py -------------------------------------------------------------------------------- /src/handlers/me/articles/comments/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/comments/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/comments/create/me_articles_comments_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/comments/create/me_articles_comments_create.py -------------------------------------------------------------------------------- /src/handlers/me/articles/comments/likes/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/comments/likes/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/comments/likes/index/me_articles_comments_likes_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/comments/likes/index/me_articles_comments_likes_index.py -------------------------------------------------------------------------------- /src/handlers/me/articles/comments/reply/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/comments/reply/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/comments/reply/me_articles_comments_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/comments/reply/me_articles_comments_reply.py -------------------------------------------------------------------------------- /src/handlers/me/articles/content_edit_histories/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/content_edit_histories/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/content_edit_histories/index/me_articles_content_edit_histories_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/content_edit_histories/index/me_articles_content_edit_histories_index.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/article_id/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/article_id/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/article_id/create/me_articles_drafts_article_id_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/article_id/create/me_articles_drafts_article_id_create.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/body/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/body/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/body/update/me_articles_drafts_body_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/body/update/me_articles_drafts_body_update.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/create/me_articles_drafts_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/create/me_articles_drafts_create.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/delete/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/delete/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/delete/me_articles_drafts_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/delete/me_articles_drafts_delete.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/index/me_articles_drafts_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/index/me_articles_drafts_index.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/publish/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/publish/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/publish/me_articles_drafts_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/publish/me_articles_drafts_publish.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/publish_with_header/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/publish_with_header/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/publish_with_header/me_articles_drafts_publish_with_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/publish_with_header/me_articles_drafts_publish_with_header.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/show/me_articles_drafts_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/show/me_articles_drafts_show.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/title/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/title/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/title/update/me_articles_drafts_title_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/title/update/me_articles_drafts_title_update.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/drafts/update/me_articles_drafts_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/drafts/update/me_articles_drafts_update.py -------------------------------------------------------------------------------- /src/handlers/me/articles/fraud/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/fraud/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/fraud/create/me_articles_fraud_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/fraud/create/me_articles_fraud_create.py -------------------------------------------------------------------------------- /src/handlers/me/articles/image_upload_url/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/image_upload_url/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/image_upload_url/show/me_articles_image_upload_url_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/image_upload_url/show/me_articles_image_upload_url_show.py -------------------------------------------------------------------------------- /src/handlers/me/articles/images/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/images/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/images/create/me_articles_images_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/images/create/me_articles_images_create.py -------------------------------------------------------------------------------- /src/handlers/me/articles/like/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/like/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/like/create/me_articles_like_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/like/create/me_articles_like_create.py -------------------------------------------------------------------------------- /src/handlers/me/articles/like/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/like/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/like/show/me_articles_like_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/like/show/me_articles_like_show.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/body/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/body/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/body/update/me_articles_public_body_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/body/update/me_articles_public_body_update.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/edit/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/edit/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/edit/me_articles_public_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/edit/me_articles_public_edit.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/index/me_articles_public_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/index/me_articles_public_index.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/republish/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/republish/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/republish/me_articles_public_republish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/republish/me_articles_public_republish.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/republish_with_header/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/republish_with_header/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/republish_with_header/me_articles_public_republish_with_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/republish_with_header/me_articles_public_republish_with_header.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/show/me_articles_public_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/show/me_articles_public_show.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/title/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/title/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/title/update/me_articles_public_title_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/title/update/me_articles_public_title_update.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/unpublish/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/unpublish/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/unpublish/me_articles_public_unpublish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/unpublish/me_articles_public_unpublish.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/public/update/me_articles_public_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/public/update/me_articles_public_update.py -------------------------------------------------------------------------------- /src/handlers/me/articles/purchase/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/purchase/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/purchase/create/me_articles_purchase_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/purchase/create/me_articles_purchase_create.py -------------------------------------------------------------------------------- /src/handlers/me/articles/purchased/article_ids/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/purchased/article_ids/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/purchased/article_ids/index/me_articles_purchased_article_ids_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/purchased/article_ids/index/me_articles_purchased_article_ids_index.py -------------------------------------------------------------------------------- /src/handlers/me/articles/purchased/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/purchased/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/purchased/index/me_articles_purchased_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/purchased/index/me_articles_purchased_index.py -------------------------------------------------------------------------------- /src/handlers/me/articles/purchased/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/purchased/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/purchased/show/me_articles_purchased_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/purchased/show/me_articles_purchased_show.py -------------------------------------------------------------------------------- /src/handlers/me/articles/pv/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/pv/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/articles/pv/create/me_articles_pv_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/articles/pv/create/me_articles_pv_create.py -------------------------------------------------------------------------------- /src/handlers/me/comments/delete/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/comments/delete/handler.py -------------------------------------------------------------------------------- /src/handlers/me/comments/delete/me_comments_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/comments/delete/me_comments_delete.py -------------------------------------------------------------------------------- /src/handlers/me/comments/likes/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/comments/likes/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/comments/likes/create/me_comments_likes_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/comments/likes/create/me_comments_likes_create.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/mute_users/add/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/mute_users/add/handler.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/mute_users/add/me_configurations_mute_users_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/mute_users/add/me_configurations_mute_users_add.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/mute_users/delete/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/mute_users/delete/handler.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/mute_users/delete/me_configurations_mute_users_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/mute_users/delete/me_configurations_mute_users_delete.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/mute_users/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/mute_users/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/mute_users/index/me_configurations_mute_users_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/mute_users/index/me_configurations_mute_users_index.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/wallet/add/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/wallet/add/handler.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/wallet/add/me_configurations_wallet_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/wallet/add/me_configurations_wallet_add.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/wallet/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/wallet/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/configurations/wallet/show/me_configurations_wallet_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/configurations/wallet/show/me_configurations_wallet_show.py -------------------------------------------------------------------------------- /src/handlers/me/external_provider_user/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/external_provider_user/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/external_provider_user/create/me_external_provider_user_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/external_provider_user/create/me_external_provider_user_create.py -------------------------------------------------------------------------------- /src/handlers/me/info/first_experiences/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/info/first_experiences/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/info/first_experiences/update/me_info_first_experiences_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/info/first_experiences/update/me_info_first_experiences_update.py -------------------------------------------------------------------------------- /src/handlers/me/info/icon/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/info/icon/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/info/icon/create/me_info_icon_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/info/icon/create/me_info_icon_create.py -------------------------------------------------------------------------------- /src/handlers/me/info/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/info/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/info/show/me_info_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/info/show/me_info_show.py -------------------------------------------------------------------------------- /src/handlers/me/info/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/info/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/info/update/me_info_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/info/update/me_info_update.py -------------------------------------------------------------------------------- /src/handlers/me/notifications/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/notifications/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/notifications/index/me_notifications_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/notifications/index/me_notifications_index.py -------------------------------------------------------------------------------- /src/handlers/me/unread_notification_managers/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/unread_notification_managers/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/unread_notification_managers/show/me_unread_notification_managers_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/unread_notification_managers/show/me_unread_notification_managers_show.py -------------------------------------------------------------------------------- /src/handlers/me/unread_notification_managers/update/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/unread_notification_managers/update/handler.py -------------------------------------------------------------------------------- /src/handlers/me/unread_notification_managers/update/me_unread_notification_managers_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/unread_notification_managers/update/me_unread_notification_managers_update.py -------------------------------------------------------------------------------- /src/handlers/me/users/fraud/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/users/fraud/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/users/fraud/create/me_users_fraud_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/users/fraud/create/me_users_fraud_create.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/allowance/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/allowance/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/allowance/show/me_wallet_allowance_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/allowance/show/me_wallet_allowance_show.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/balance/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/balance/handler.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/balance/me_wallet_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/balance/me_wallet_balance.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/distributed_tokens/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/distributed_tokens/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/distributed_tokens/show/me_wallet_distributed_tokens_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/distributed_tokens/show/me_wallet_distributed_tokens_show.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/nonce/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/nonce/show/handler.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/nonce/show/me_wallet_nonce_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/nonce/show/me_wallet_nonce_show.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/tip/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/tip/handler.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/tip/me_wallet_tip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/tip/me_wallet_tip.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/token/allhistories/create/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/token/allhistories/create/handler.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/token/allhistories/create/me_wallet_token_allhistories_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/token/allhistories/create/me_wallet_token_allhistories_create.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/token/histories/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/token/histories/index/handler.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/token/histories/index/me_wallet_token_histories_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/token/histories/index/me_wallet_token_histories_index.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/token/send/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/token/send/handler.py -------------------------------------------------------------------------------- /src/handlers/me/wallet/token/send/me_wallet_token_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/me/wallet/token/send/me_wallet_token_send.py -------------------------------------------------------------------------------- /src/handlers/search/articles/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/search/articles/handler.py -------------------------------------------------------------------------------- /src/handlers/search/articles/search_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/search/articles/search_articles.py -------------------------------------------------------------------------------- /src/handlers/search/tags/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/search/tags/handler.py -------------------------------------------------------------------------------- /src/handlers/search/tags/search_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/search/tags/search_tags.py -------------------------------------------------------------------------------- /src/handlers/search/tags_count/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/search/tags_count/handler.py -------------------------------------------------------------------------------- /src/handlers/search/tags_count/search_tags_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/search/tags_count/search_tags_count.py -------------------------------------------------------------------------------- /src/handlers/search/users/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/search/users/handler.py -------------------------------------------------------------------------------- /src/handlers/search/users/search_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/search/users/search_users.py -------------------------------------------------------------------------------- /src/handlers/sign_up/line/authorize_url/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/sign_up/line/authorize_url/handler.py -------------------------------------------------------------------------------- /src/handlers/sign_up/line/authorize_url/sign_up_line_authorize_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/sign_up/line/authorize_url/sign_up_line_authorize_url.py -------------------------------------------------------------------------------- /src/handlers/topics/crypto/ranking/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/topics/crypto/ranking/index/handler.py -------------------------------------------------------------------------------- /src/handlers/topics/crypto/ranking/index/topics_crypto_ranking_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/topics/crypto/ranking/index/topics_crypto_ranking_index.py -------------------------------------------------------------------------------- /src/handlers/topics/game/nft_games/ranking/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/topics/game/nft_games/ranking/index/handler.py -------------------------------------------------------------------------------- /src/handlers/topics/game/nft_games/ranking/index/topics_game_nft_games_ranking_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/topics/game/nft_games/ranking/index/topics_game_nft_games_ranking_index.py -------------------------------------------------------------------------------- /src/handlers/topics/game/nft_games/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/topics/game/nft_games/show/handler.py -------------------------------------------------------------------------------- /src/handlers/topics/game/nft_games/show/topics_game_nft_games_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/topics/game/nft_games/show/topics_game_nft_games_show.py -------------------------------------------------------------------------------- /src/handlers/topics/index/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/topics/index/handler.py -------------------------------------------------------------------------------- /src/handlers/topics/index/topics_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/topics/index/topics_index.py -------------------------------------------------------------------------------- /src/handlers/users/articles/popular/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/users/articles/popular/handler.py -------------------------------------------------------------------------------- /src/handlers/users/articles/popular/users_articles_popular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/users/articles/popular/users_articles_popular.py -------------------------------------------------------------------------------- /src/handlers/users/articles/public/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/users/articles/public/handler.py -------------------------------------------------------------------------------- /src/handlers/users/articles/public/users_articles_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/users/articles/public/users_articles_public.py -------------------------------------------------------------------------------- /src/handlers/users/info/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/users/info/show/handler.py -------------------------------------------------------------------------------- /src/handlers/users/info/show/users_info_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/users/info/show/users_info_show.py -------------------------------------------------------------------------------- /src/handlers/users/wallet/address/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/users/wallet/address/show/handler.py -------------------------------------------------------------------------------- /src/handlers/users/wallet/address/show/users_wallet_address_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/users/wallet/address/show/users_wallet_address_show.py -------------------------------------------------------------------------------- /src/handlers/wallet/bridge_information/show/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/wallet/bridge_information/show/handler.py -------------------------------------------------------------------------------- /src/handlers/wallet/bridge_information/show/wallet_bridge_information_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/src/handlers/wallet/bridge_information/show/wallet_bridge_information_show.py -------------------------------------------------------------------------------- /swagger/custom-auth-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/swagger/custom-auth-swagger.yaml -------------------------------------------------------------------------------- /swagger/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/swagger/swagger.yaml -------------------------------------------------------------------------------- /tests/common/test_authlete_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_authlete_util.py -------------------------------------------------------------------------------- /tests/common/test_cognito_trigger_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_cognito_trigger_base.py -------------------------------------------------------------------------------- /tests/common/test_crypto_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_crypto_util.py -------------------------------------------------------------------------------- /tests/common/test_db_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_db_util.py -------------------------------------------------------------------------------- /tests/common/test_es_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_es_util.py -------------------------------------------------------------------------------- /tests/common/test_facebook_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_facebook_util.py -------------------------------------------------------------------------------- /tests/common/test_lambda_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_lambda_base.py -------------------------------------------------------------------------------- /tests/common/test_nonce_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_nonce_util.py -------------------------------------------------------------------------------- /tests/common/test_notification_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_notification_util.py -------------------------------------------------------------------------------- /tests/common/test_parameter_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_parameter_util.py -------------------------------------------------------------------------------- /tests/common/test_private_chain_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_private_chain_util.py -------------------------------------------------------------------------------- /tests/common/test_tag_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_tag_util.py -------------------------------------------------------------------------------- /tests/common/test_text_sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_text_sanitizer.py -------------------------------------------------------------------------------- /tests/common/test_time_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_time_util.py -------------------------------------------------------------------------------- /tests/common/test_twitter_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_twitter_util.py -------------------------------------------------------------------------------- /tests/common/test_user_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_user_util.py -------------------------------------------------------------------------------- /tests/common/test_web3_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_web3_util.py -------------------------------------------------------------------------------- /tests/common/test_yahoo_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/common/test_yahoo_util.py -------------------------------------------------------------------------------- /tests/handlers/applications/show/test_applications_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/applications/show/test_applications_show.py -------------------------------------------------------------------------------- /tests/handlers/articles/alis_tokens/show/test_articles_alis_tokens_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/alis_tokens/show/test_articles_alis_tokens_show.py -------------------------------------------------------------------------------- /tests/handlers/articles/comments/index/test_articles_comments_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/comments/index/test_articles_comments_index.py -------------------------------------------------------------------------------- /tests/handlers/articles/eyecatch/test_articles_eyecatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/eyecatch/test_articles_eyecatch.py -------------------------------------------------------------------------------- /tests/handlers/articles/likes/show/test_articles_likes_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/likes/show/test_articles_likes_show.py -------------------------------------------------------------------------------- /tests/handlers/articles/popular/test_articles_popular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/popular/test_articles_popular.py -------------------------------------------------------------------------------- /tests/handlers/articles/price/show/test_articles_price_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/price/show/test_articles_price_show.py -------------------------------------------------------------------------------- /tests/handlers/articles/recent/test_articles_recent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/recent/test_articles_recent.py -------------------------------------------------------------------------------- /tests/handlers/articles/recommended/test_articles_recommended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/recommended/test_articles_recommended.py -------------------------------------------------------------------------------- /tests/handlers/articles/show/test_articles_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/show/test_articles_show.py -------------------------------------------------------------------------------- /tests/handlers/articles/supporters/index/test_articles_supporters_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/supporters/index/test_articles_supporters_index.py -------------------------------------------------------------------------------- /tests/handlers/articles/tip_ranking/test_articles_tip_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/articles/tip_ranking/test_articles_tip_ranking.py -------------------------------------------------------------------------------- /tests/handlers/authorizer/test_authorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/authorizer/test_authorizer.py -------------------------------------------------------------------------------- /tests/handlers/cognito_trigger/custommessage/test_custom_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/cognito_trigger/custommessage/test_custom_message.py -------------------------------------------------------------------------------- /tests/handlers/cognito_trigger/postconfirmation/test_post_confirmation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/cognito_trigger/postconfirmation/test_post_confirmation.py -------------------------------------------------------------------------------- /tests/handlers/cognito_trigger/preauthentication/test_pre_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/cognito_trigger/preauthentication/test_pre_authentication.py -------------------------------------------------------------------------------- /tests/handlers/cognito_trigger/presignup/test_pre_signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/cognito_trigger/presignup/test_pre_signup.py -------------------------------------------------------------------------------- /tests/handlers/comments/likes/show/test_comments_likes_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/comments/likes/show/test_comments_likes_show.py -------------------------------------------------------------------------------- /tests/handlers/login/facebook/authorization_url/test_login_facebook_authorization_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/login/facebook/authorization_url/test_login_facebook_authorization_url.py -------------------------------------------------------------------------------- /tests/handlers/login/facebook/index/test_login_facebook_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/login/facebook/index/test_login_facebook_index.py -------------------------------------------------------------------------------- /tests/handlers/login/line/authorize_request/test_login_line_authorize_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/login/line/authorize_request/test_login_line_authorize_request.py -------------------------------------------------------------------------------- /tests/handlers/login/line/authorize_url/test_login_line_authorize_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/login/line/authorize_url/test_login_line_authorize_url.py -------------------------------------------------------------------------------- /tests/handlers/login/twitter/authorization_url/test_login_twitter_authorization_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/login/twitter/authorization_url/test_login_twitter_authorization_url.py -------------------------------------------------------------------------------- /tests/handlers/login/twitter/index/test_login_twitter_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/login/twitter/index/test_login_twitter_index.py -------------------------------------------------------------------------------- /tests/handlers/login/yahoo/authorization_url/test_login_yahoo_authorization_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/login/yahoo/authorization_url/test_login_yahoo_authorization_url.py -------------------------------------------------------------------------------- /tests/handlers/login/yahoo/index/test_login_yahoo_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/login/yahoo/index/test_login_yahoo_index.py -------------------------------------------------------------------------------- /tests/handlers/me/allowed_applications/delete/test_me_allowed_applications_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/allowed_applications/delete/test_me_allowed_applications_delete.py -------------------------------------------------------------------------------- /tests/handlers/me/allowed_applications/index/test_me_allowed_applications_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/allowed_applications/index/test_me_allowed_applications_index.py -------------------------------------------------------------------------------- /tests/handlers/me/applications/create/test_me_applications_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/applications/create/test_me_applications_create.py -------------------------------------------------------------------------------- /tests/handlers/me/applications/delete/test_me_applications_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/applications/delete/test_me_applications_delete.py -------------------------------------------------------------------------------- /tests/handlers/me/applications/index/test_me_applications_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/applications/index/test_me_applications_index.py -------------------------------------------------------------------------------- /tests/handlers/me/applications/show/test_me_applications_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/applications/show/test_me_applications_show.py -------------------------------------------------------------------------------- /tests/handlers/me/applications/update/test_me_applications_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/applications/update/test_me_applications_update.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/comments/create/test_me_articles_comments_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/comments/create/test_me_articles_comments_create.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/comments/likes/index/test_me_articles_comments_likes_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/comments/likes/index/test_me_articles_comments_likes_index.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/comments/reply/test_me_articles_comments_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/comments/reply/test_me_articles_comments_reply.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/content_edit_histories/index/test_me_articles_content_edit_histories_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/content_edit_histories/index/test_me_articles_content_edit_histories_index.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/article_id/create/test_me_article_drafts_article_id_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/article_id/create/test_me_article_drafts_article_id_create.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/body/update/test_me_articles_drafts_body_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/body/update/test_me_articles_drafts_body_update.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/create/test_me_article_drafts_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/create/test_me_article_drafts_create.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/delete/test_me_articles_drafts_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/delete/test_me_articles_drafts_delete.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/index/test_me_article_drafts_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/index/test_me_article_drafts_index.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/publish/test_me_articles_drafts_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/publish/test_me_articles_drafts_publish.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/publish_with_header/test_me_articles_drafts_publish_with_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/publish_with_header/test_me_articles_drafts_publish_with_header.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/show/test_me_articles_drafts_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/show/test_me_articles_drafts_show.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/title/update/test_me_articles_drafts_title_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/title/update/test_me_articles_drafts_title_update.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/drafts/update/test_me_articles_drafts_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/drafts/update/test_me_articles_drafts_update.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/fraud/create/test_me_articles_fraud_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/fraud/create/test_me_articles_fraud_create.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/image_upload_url/show/test_me_articles_image_upload_url_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/image_upload_url/show/test_me_articles_image_upload_url_show.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/images/create/test_me_articles_images_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/images/create/test_me_articles_images_create.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/like/create/test_me_articles_like_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/like/create/test_me_articles_like_create.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/like/show/test_me_articles_like_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/like/show/test_me_articles_like_show.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/public/body/update/test_me_articles_public_body_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/public/body/update/test_me_articles_public_body_update.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/public/edit/test_me_articles_public_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/public/edit/test_me_articles_public_edit.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/public/index/test_me_articles_public_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/public/index/test_me_articles_public_index.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/public/republish/test_me_articles_public_republish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/public/republish/test_me_articles_public_republish.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/public/republish_with_header/test_me_articles_public_republish_with_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/public/republish_with_header/test_me_articles_public_republish_with_header.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/public/show/test_me_articles_public_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/public/show/test_me_articles_public_show.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/public/title/update/test_me_articles_public_title_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/public/title/update/test_me_articles_public_title_update.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/public/unpublish/test_me_articles_public_unpublish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/public/unpublish/test_me_articles_public_unpublish.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/public/update/test_me_articles_public_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/public/update/test_me_articles_public_update.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/purchase/create/test_me_articles_purchase_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/purchase/create/test_me_articles_purchase_create.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/purchased/article_ids/index/test_me_articles_purchased_article_ids_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/purchased/article_ids/index/test_me_articles_purchased_article_ids_index.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/purchased/index/test_me_articles_purchased_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/purchased/index/test_me_articles_purchased_index.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/purchased/show/test_me_articles_purchased_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/purchased/show/test_me_articles_purchased_show.py -------------------------------------------------------------------------------- /tests/handlers/me/articles/pv/create/test_me_articles_pv_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/articles/pv/create/test_me_articles_pv_create.py -------------------------------------------------------------------------------- /tests/handlers/me/comments/delete/test_me_comments_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/comments/delete/test_me_comments_delete.py -------------------------------------------------------------------------------- /tests/handlers/me/comments/likes/create/test_me_comments_likes_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/comments/likes/create/test_me_comments_likes_create.py -------------------------------------------------------------------------------- /tests/handlers/me/configurations/mute_users/add/test_me_configurations_mute_users_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/configurations/mute_users/add/test_me_configurations_mute_users_add.py -------------------------------------------------------------------------------- /tests/handlers/me/configurations/mute_users/delete/test_me_configurations_mute_users_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/configurations/mute_users/delete/test_me_configurations_mute_users_delete.py -------------------------------------------------------------------------------- /tests/handlers/me/configurations/mute_users/index/test_me_configurations_mute_users_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/configurations/mute_users/index/test_me_configurations_mute_users_index.py -------------------------------------------------------------------------------- /tests/handlers/me/configurations/wallet/add/test_me_configurations_wallet_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/configurations/wallet/add/test_me_configurations_wallet_add.py -------------------------------------------------------------------------------- /tests/handlers/me/configurations/wallet/show/test_me_configurations_wallet_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/configurations/wallet/show/test_me_configurations_wallet_show.py -------------------------------------------------------------------------------- /tests/handlers/me/external_provider_user/create/test_me_external_provider_user_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/external_provider_user/create/test_me_external_provider_user_create.py -------------------------------------------------------------------------------- /tests/handlers/me/info/first_experiences/update/test_me_info_first_experiences_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/info/first_experiences/update/test_me_info_first_experiences_update.py -------------------------------------------------------------------------------- /tests/handlers/me/info/icon/create/test_me_info_icon_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/info/icon/create/test_me_info_icon_create.py -------------------------------------------------------------------------------- /tests/handlers/me/info/show/test_me_info_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/info/show/test_me_info_show.py -------------------------------------------------------------------------------- /tests/handlers/me/info/update/test_me_info_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/info/update/test_me_info_update.py -------------------------------------------------------------------------------- /tests/handlers/me/notifications/index/test_me_notifications_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/notifications/index/test_me_notifications_index.py -------------------------------------------------------------------------------- /tests/handlers/me/unread_notification_managers/show/test_me_unread_notification_managers_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/unread_notification_managers/show/test_me_unread_notification_managers_show.py -------------------------------------------------------------------------------- /tests/handlers/me/unread_notification_managers/update/test_me_unread_notification_managers_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/unread_notification_managers/update/test_me_unread_notification_managers_update.py -------------------------------------------------------------------------------- /tests/handlers/me/users/fraud/create/test_me_users_fraud_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/users/fraud/create/test_me_users_fraud_create.py -------------------------------------------------------------------------------- /tests/handlers/me/wallet/allowance/show/test_me_wallet_allowance_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/allowance/show/test_me_wallet_allowance_show.py -------------------------------------------------------------------------------- /tests/handlers/me/wallet/balance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/balance/README.md -------------------------------------------------------------------------------- /tests/handlers/me/wallet/balance/test_me_wallet_blance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/balance/test_me_wallet_blance.py -------------------------------------------------------------------------------- /tests/handlers/me/wallet/distributed_tokens/show/test_me_wallet_distributed_tokens_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/distributed_tokens/show/test_me_wallet_distributed_tokens_show.py -------------------------------------------------------------------------------- /tests/handlers/me/wallet/nonce/show/test_me_wallet_nonce_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/nonce/show/test_me_wallet_nonce_show.py -------------------------------------------------------------------------------- /tests/handlers/me/wallet/tip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/tip/README.md -------------------------------------------------------------------------------- /tests/handlers/me/wallet/tip/test_me_wallet_tip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/tip/test_me_wallet_tip.py -------------------------------------------------------------------------------- /tests/handlers/me/wallet/token/allhistories/create/test_me_wallet_token_allhistories_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/token/allhistories/create/test_me_wallet_token_allhistories_create.py -------------------------------------------------------------------------------- /tests/handlers/me/wallet/token/histories/index/test_me_wallet_token_histories_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/token/histories/index/test_me_wallet_token_histories_index.py -------------------------------------------------------------------------------- /tests/handlers/me/wallet/token/send/test_me_wallet_token_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/me/wallet/token/send/test_me_wallet_token_send.py -------------------------------------------------------------------------------- /tests/handlers/search/articles/test_search_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/search/articles/test_search_articles.py -------------------------------------------------------------------------------- /tests/handlers/search/tags/test_search_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/search/tags/test_search_tags.py -------------------------------------------------------------------------------- /tests/handlers/search/tags_count/test_search_tags_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/search/tags_count/test_search_tags_count.py -------------------------------------------------------------------------------- /tests/handlers/search/users/test_search_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/search/users/test_search_users.py -------------------------------------------------------------------------------- /tests/handlers/sign_up/line/authorize_url/test_sign_up_line_authorize_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/sign_up/line/authorize_url/test_sign_up_line_authorize_url.py -------------------------------------------------------------------------------- /tests/handlers/topics/crypto/ranking/index/test_crypto_ranking_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/topics/crypto/ranking/index/test_crypto_ranking_index.py -------------------------------------------------------------------------------- /tests/handlers/topics/game/nft_games/ranking/index/test_topics_game_nft_games_ranking_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/topics/game/nft_games/ranking/index/test_topics_game_nft_games_ranking_index.py -------------------------------------------------------------------------------- /tests/handlers/topics/game/nft_games/show/test_topics_game_nft_games_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/topics/game/nft_games/show/test_topics_game_nft_games_show.py -------------------------------------------------------------------------------- /tests/handlers/topics/index/test_topics_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/topics/index/test_topics_index.py -------------------------------------------------------------------------------- /tests/handlers/users/articles/popular/test_users_articles_popular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/users/articles/popular/test_users_articles_popular.py -------------------------------------------------------------------------------- /tests/handlers/users/articles/public/test_users_articles_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/users/articles/public/test_users_articles_public.py -------------------------------------------------------------------------------- /tests/handlers/users/info/show/test_users_info_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/users/info/show/test_users_info_show.py -------------------------------------------------------------------------------- /tests/handlers/users/wallet/address/show/test_users_wallet_address_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/users/wallet/address/show/test_users_wallet_address_show.py -------------------------------------------------------------------------------- /tests/handlers/wallet/bridge_information/show/test_wallet_bridge_information_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/handlers/wallet/bridge_information/show/test_wallet_bridge_information_show.py -------------------------------------------------------------------------------- /tests/tests_common/tests_es_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/tests_common/tests_es_util.py -------------------------------------------------------------------------------- /tests/tests_common/tests_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlisProject/serverless-application/HEAD/tests/tests_common/tests_util.py --------------------------------------------------------------------------------