mirror of https://github.com/rancher/dashboard.git
12 lines
287 B
JavaScript
12 lines
287 B
JavaScript
/**
|
|
* Fetch version metadata from backend /rancherversion and /versionAPI and store it
|
|
*
|
|
* This metadata does not change for an installation of Rancher
|
|
*/
|
|
|
|
import versions from '@shell/utils/versions';
|
|
|
|
export default async function({ store }) {
|
|
await versions.fetch({ store });
|
|
}
|