@Override
    public Future<Boolean> insert(Post post) {
        //inserting the post in the posts database
        DocumentReference docRef = db.collection(POSTCOLLECTION.toString()).document();
        Task<Void> task = docRef.set(post.getAllAttributes());