mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	* fixes issue with token auth selected after logging out from oidc or jwt methods * adds changelog entry * reverts backendType var name change in auth-form authenticate method
		
			
				
	
	
		
			34 lines
		
	
	
		
			660 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			660 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import EmberObject, { computed } from '@ember/object';
 | 
						|
import Evented from '@ember/object/evented';
 | 
						|
 | 
						|
export const fakeWindow = EmberObject.extend(Evented, {
 | 
						|
  init() {
 | 
						|
    this._super(...arguments);
 | 
						|
    this.on('close', () => {
 | 
						|
      this.set('closed', true);
 | 
						|
    });
 | 
						|
  },
 | 
						|
  screen: computed(function () {
 | 
						|
    return {
 | 
						|
      height: 600,
 | 
						|
      width: 500,
 | 
						|
    };
 | 
						|
  }),
 | 
						|
  origin: 'https://my-vault.com',
 | 
						|
  closed: false,
 | 
						|
  open() {},
 | 
						|
  close() {},
 | 
						|
});
 | 
						|
 | 
						|
export const buildMessage = (opts) => ({
 | 
						|
  isTrusted: true,
 | 
						|
  origin: 'https://my-vault.com',
 | 
						|
  data: {
 | 
						|
    source: 'oidc-callback',
 | 
						|
    path: 'foo',
 | 
						|
    state: 'state',
 | 
						|
    code: 'code',
 | 
						|
  },
 | 
						|
  ...opts,
 | 
						|
});
 |