File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -33,24 +33,6 @@ export class DahService {
33
33
) ;
34
34
}
35
35
36
- saveSearch ( query : string ) : Observable < StoreStateResponse [ 'autnresponse' ] [ 'responsedata' ] > {
37
- let token = localStorage . getItem ( 'token' ) ;
38
- const params = new HttpParams ( )
39
- . set ( 'action' , 'Query' )
40
- . set ( 'totalresults' , 'true' )
41
- . set ( 'anylanguage' , 'true' )
42
- . set ( 'SecurityInfo' , token || '' )
43
- . set ( 'text' , query )
44
- . set ( 'storestate' , 'true' )
45
- . set ( 'StoredStateTokenLifetime' , '-1' )
46
- . set ( 'print' , 'NoResults' )
47
- . set ( 'MaxResults' , '100' )
48
- . set ( 'responseformat' , 'simplejson' ) ;
49
-
50
- return this . http . get < StoreStateResponse > ( this . dahUrl , { params } ) . pipe (
51
- map ( response => response . autnresponse . responsedata )
52
- ) ;
53
- }
54
36
55
37
getTagNames ( ) : Observable < TagName [ ] > {
56
38
const params = new HttpParams ( )
You can’t perform that action at this time.
0 commit comments