mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-04 04:12:45 +00:00 
			
		
		
		
	some testing
This commit is contained in:
		@@ -81,9 +81,6 @@ def corpus(corpus_id):
 | 
			
		||||
        db.session.commit()
 | 
			
		||||
        flash('Your changes have been saved')
 | 
			
		||||
        return redirect(url_for('.corpus', corpus_id=corpus.id))
 | 
			
		||||
    # if corpus.following_users == [None]:
 | 
			
		||||
    #     following_users = []
 | 
			
		||||
    # else:
 | 
			
		||||
    # following_users = [
 | 
			
		||||
    #     u.to_json_serializeable() for u
 | 
			
		||||
    #     in corpus.following_users
 | 
			
		||||
 
 | 
			
		||||
@@ -650,6 +650,10 @@ class User(HashidMixin, UserMixin, db.Model):
 | 
			
		||||
                x.hashid: x.to_json_serializeable(relationships=True)
 | 
			
		||||
                for x in self.spacy_nlp_pipeline_models
 | 
			
		||||
            }
 | 
			
		||||
            json_serializeable['followed_corpora'] = {
 | 
			
		||||
                x.hashid: x.to_json_serializeable(relationships=True)
 | 
			
		||||
                for x in self.followed_corpora
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
        if filter_by_privacy_settings:
 | 
			
		||||
            if not self.has_profile_privacy_setting(ProfilePrivacySettings.SHOW_EMAIL):
 | 
			
		||||
 
 | 
			
		||||
@@ -17,7 +17,7 @@ class CorpusFileList extends ResourceList {
 | 
			
		||||
      });
 | 
			
		||||
    });
 | 
			
		||||
    app.getUser(this.userId).then((user) => {
 | 
			
		||||
      this.add(Object.values(user.corpora[this.corpusId].files));
 | 
			
		||||
      this.add(Object.values(user.corpora[this.corpusId].files || user.followed_corpora[this.corpusId].files));
 | 
			
		||||
      this.isInitialized = true;
 | 
			
		||||
    });
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user