devmitrandir
devmitrandir
Thanks! But here's the example ```python def user_create( *, email: str, name: str ) -> User: user = User(email=email) user.full_clean() user.save() profile_create(user=user, name=name) confirmation_email_send(user=user) return user ``` By this logic,...
@codespearhead Thanks for the answer! I'm using only gitlab oauth2. I just need to submit requests to gitlab through my application. This is a simple application that should create reports...
@RadoRado Hi! For example, I have 2 applications: `integrations` and `blog`. I need to fetch data from a third party API once a day and save. My models are in...
@RadoRado Thank you very much!