aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/actions/authentication.ts
blob: 8cbc2227195eba69b6507fc91b0997d0a74a223a (plain)
1
2
3
4
5
6
7
8
import { Action } from '../flux/action';

export class UpdateAuthentication extends Action {

  constructor(public bearerToken: string | null) {
    super();
  }
}