Giter Site home page Giter Site logo

media-connection's Introduction

media-connection

final project for school

media-connection's People

Contributors

lermanori avatar ulmerido avatar

Stargazers

 avatar

Watchers

 avatar  avatar

media-connection's Issues

Delete post from group

In the server/routes/group.js file, line 9/10

router.delete('/:groupid/:friendshipid/user/delete', authMiddleware, groupController.deleteUserFromGroup);
router.delete('/:groupid/:postid/post/delete', authMiddleware, groupController.deleteUserFromGroup);

Line 9 calls groupController.deleteUserFromGroup to remove a User from gorup. OK!
Line 10 calls groupController.deleteUserFromGroup to remove a Post from group. Error!!

Line 10 should call groupController.deletePostFromGroup

bug at creating new requests

ive created a new request and in the movement from the properties page to the request page there is no content in the post card( the id is still present at the top!).

unfriend

need to implement unfriend and add it to profile page

Props Display in postCard.vue [Fixed][NeedToUpdateFile]

To fix the display - Replace

in mc3/src/components/postCard.vue
replace the current q-card of "properties"
with the following code:

   <q-card-section v-if="post.filterdProperties.length > 1">
      properties:
      <div class="q-pa-sm">
        <q-markup-table separator="cell">
          <thead>
            <tr>
              <th class="text-left">Key</th>
              <th class="text-center">Value</th>
            </tr>
          </thead>
          <tbody v-for="(prop,index) in post.filterdProperties" :key="index">
            <tr v-if="prop.key != undefined && prop.value != undefined">
              <td class="text-left">{{prop.key}}</td>
              <td class="text-center">{{prop.value}}</td>
            </tr>
          </tbody>
        </q-markup-table>
      </div>
    </q-card-section>

in quasar.conf.js
add the following:

 components: [
'QMarkupTable',
],

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.