Skip to content
View ruslan-korneev's full-sized avatar
🦆
Typing ...
🦆
Typing ...

Organizations

@PythonBalkan @aovim @tokemons

Block or report ruslan-korneev

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ruslan-korneev/README.md

digital garden at ruslan.beer
this is where u gotta push past your limits...



Total time coded since Aug 13 2021

Pinned Loading

  1. neovim-config neovim-config Public

    Lua

  2. pgconnect-zsh pgconnect-zsh Public

    This plugin enhances your Oh My Zsh setup by providing an easy way to manage and connect to PostgreSQL databases using pgcli and fzf for a seamless command-line experience.

    Shell 2

  3. dotfiles dotfiles Public

    Shell

  4. lets-schedule lets-schedule Public

    open-source API designed for scheduling events

    Python

  5. DRF Serializer and Permission per Ac... DRF Serializer and Permission per Action.md
    1
    # Serializer and Permission per action in Django REST Framework
    2
    In Django REST Framework you have a Viewsets, which can contain multiple views (actions). 
    3
    But to use different serializers and permissions for each action you always need to override `get_serializer_class` or `get_permissions` methods. 
    4
    Here I've implemented a mixins which allow you to setup your serializers and permissions per action in a dictionaries
    5