This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Caterpillar rancher does not record, sell, store, or otherwise use any of your personal data. It makes use of Google Play Games services to track your high score. That's it! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### models.py | |
from django.core.exceptions import PermissionDenied | |
from django.contrib.auth.models import AbstractUser | |
from django.db import models | |
from django.http import HttpResponse, Http404 | |
# your custom user model here | |
class MyCustomUser(AbstractUser): | |
is_patient = models.BooleanField() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib.auth.models import AnonymousUser | |
from django.db import close_old_connections | |
from django.conf import settings | |
from channels.sessions import CookieMiddleware | |
from channels.db import database_sync_to_async | |
from rest_framework_simplejwt.authentication import JWTAuthentication | |
import logging | |
logger = logging.getLogger(__name__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity >= 0.7.0; | |
import { | |
ISuperfluid, | |
ISuperToken, | |
ISuperApp, | |
ISuperAgreement, | |
SuperAppDefinitions | |
} from "https://github.com/superfluid-finance/protocol-monorepo/blob/remix-support/packages/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluid.sol"; |