Skip to content
Snippets Groups Projects
Commit 95789ffd authored by Gaëlle FOURNIER's avatar Gaëlle FOURNIER
Browse files

Remove useless FIXME and console logs


Co-authored-by: default avatarbenemart <benedicte.martinez@cea.fr>
parent e2b4f18f
No related branches found
No related tags found
No related merge requests found
......@@ -189,7 +189,7 @@ public class VitamContextService {
final ObjectMapper mapper = new ObjectMapper();
final JsonNode node = mapper.convertValue(listOfContexts, JsonNode.class);
// FIXME ? The "accessContracts" and "ingestContracts" in the permissions must be rename to "AccessContracts" and "IngestContracts" to be saved in Vitam
// The "accessContracts" and "ingestContracts" in the permissions must be rename to "AccessContracts" and "IngestContracts" to be saved in Vitam
final ArrayNode arrayNode = (ArrayNode) node;
arrayNode.forEach(contextNode -> {
final ArrayNode permissionsNode = (ArrayNode) contextNode.get("Permissions");
......
#!/usr/bin/env bash
set -e
# Specific script for internal deploy on smile nexus
# Copy in vitadmin project and execute after building the rpms with :
# mvn clean install -DskipTests -pl '!cots/vitamui-mongo-express' -Pvitam-external,rpm,webpack,skipTestsRun
for rpm_file in `find . -name "*.rpm"`
do
echo "BEGIN ${rpm_file}"
rpm_file_clean=$(basename -- ${rpm_file})
echo "BASENAME ${rpm_file_clean}"
# curl --fail -v --upload-file ${rpm_file} http://nexus.vitry.intranet/repository/RPM-Vitam-SNAPSHOT/vitadmin/${rpm_file_clean}
cp ${rpm_file} ../../documents/livraison_cea_lot1_fixes/
echo "END ${rpm_file}"
done
......@@ -30,7 +30,6 @@ export class ProbativeValueListComponent extends InfiniteScrollTable<any> implem
@Input('filters')
set filters(filters: ProbativeValueFilters) {
console.log('Filters: ', filters);
this._filters = filters;
this.filterChange.next(filters);
}
......@@ -72,7 +71,6 @@ export class ProbativeValueListComponent extends InfiniteScrollTable<any> implem
searchCriteriaChange.subscribe(() => {
const query: any = this.buildProbativeValueCriteriaFromSearch();
console.log('query: ', query);
const pageRequest = new PageRequest(0, DEFAULT_PAGE_SIZE, this.orderBy, this.direction, JSON.stringify(query));
this.search(pageRequest);
});
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment