Code Monkey home page Code Monkey logo

wey's Introduction

wey

wey's People

Contributors

steinovehelset avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

wey's Issues

Create superuser from terminal

While trying to create a superuser via terminal the error is shown:
django.db.utils.IntegrityError: NOT NULL constraint failed: account_user.name

Unable to use messaging between users

In below code sent_to field is not getting values properly causing to fail create conversation between users.
`@api_view(['POST'])
def conversation_send_message(request, pk):
conversation = Conversation.objects.filter(users__in=list([request.user])).get(pk=pk)

for user in conversation.users.all():
    if user != request.user:
        sent_to = user

conversation_message = ConversationMessage.objects.create(
    conversation=conversation,
    body=request.data.get('body'),
    created_by=request.user,
    sent_to=sent_to
)

serializer = ConversationMessageSerializer(conversation_message)

return JsonResponse(serializer.data, safe=False)`

Also i'm facing problem in listing user names in ChatView.

<p 
      class="text-xs font-bold"
      v-if="user.id !== userStore.user.id"
>{{ user.name }}</p>

only logged in user name is available to print. I don't know your codes has this problem if you can please review my code at https://github.com/aioont/connect Thank you:)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.