Skip to content

[TECH] Supprimer la dépendance à ember-fetch dans Pix Admin. #12018

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion admin/app/authenticators/oidc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { service } from '@ember/service';
import { isEmpty } from '@ember/utils';
import BaseAuthenticator from 'ember-simple-auth/authenticators/base';
import fetch from 'fetch';
import ENV from 'pix-admin/config/environment';
import { decodeToken } from 'pix-admin/helpers/jwt';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { action } from '@ember/object';
import { service } from '@ember/service';
import Component from '@glimmer/component';
import { t } from 'ember-intl';
import fetch from 'fetch';
import ENV from 'pix-admin/config/environment';

import AdministrationBlockLayout from '../block-layout';
Expand Down
1 change: 0 additions & 1 deletion admin/app/routes/authentication/login-oidc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Route from '@ember/routing/route';
import { service } from '@ember/service';
import fetch from 'fetch';
import get from 'lodash/get';
import ENV from 'pix-admin/config/environment';
import JSONApiError from 'pix-admin/errors/json-api-error';
Expand Down
1 change: 0 additions & 1 deletion admin/app/services/file-saver.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Service from '@ember/service';
import fetch from 'fetch';

export default class FileSaverService extends Service {
async save({
Expand Down
Loading