This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Injector } from '@angular/core' | |
import { HttpModule, RequestOptions, XHRBackend, Http, Response, ResponseOptions, ResponseType } from '@angular/http' | |
import { inject, TestBed } from '@angular/core/testing' | |
import { MockBackend, MockConnection } from '@angular/http/testing' | |
import { AuthService } from './auth.service' | |
import { Oauth2Http } from './http' | |
import { CookieService } from '../../cookie/ng2' | |
import { MockError } from '../../util/ng2/test' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "1.1.1", | |
"magento_version": "1.9.2.0", | |
"page": { | |
"om:site": "1", | |
"category": "checkout", | |
"om:checkout_stage": "review" | |
}, | |
"user": { | |
"language": "en_GB", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
func do(a []int) { | |
a[1] = 9 | |
a = append(a, 7) | |
fmt.Println(a) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type User struct { | |
gorm.Model | |
Email string | |
Password string | |
Apps []App | |
} | |
type App struct { | |
gorm.Model |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Вариант 1: | |
- Зайдите на my.1dmp.io набрав адрес в строке браузера. | |
- Откройте консоль разработчика (в Chrome - ctrl+shift+J (Win), cmd+alt+J (MacOS); в Safari - ctrl+shift+I (Win), cmd+alt+I (MacOS); в FireFox - ctrl+shift+I (Win), cmd+alt+I (MacOS); Internet Explorer - F12 или выбрать в меню Developer Tools.) | |
- Во вкладке "Консоль" выполните команду: history.pushState({}, '', '/') | |
- Обновите страницу ctrl+R (Win) / cmd+R (MacOS) | |
Вариант 2: | |
Очистите историю в браузере для домена my.1dmp.io. Инструкции для разных браузеров: | |
Chrome - http://superuser.com/questions/721692/google-chrome-clear-cache-for-specific-website/722548#722548 | |
Safari - http://osxdaily.com/2014/11/28/clear-recent-web-history-safari-mac-os-x/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Если у вас при входе в личный кабинет с ранее уже используемым логином и паролем выводится ошибка «invalid.credentials» то вам необходимо очистить кеш браузера. Сделать это можно двумя способами: | |
Вариант 1: | |
- Зайдите на my.1dmp.io набрав адрес в строке браузера. | |
- Откройте консоль разработчика (в Chrome - ctrl+shift+J (Win), cmd+alt+J (MacOS); в Safari - ctrl+shift+I (Win), cmd+alt+I (MacOS); в FireFox - ctrl+shift+I (Win), cmd+alt+I (MacOS); Internet Explorer - F12 или выбрать в меню Developer Tools.) | |
- Во вкладке "Консоль" выполните команду: history.pushState({}, '', '/') | |
- Обновите страницу ctrl+R (Win) / cmd+R (MacOS) | |
Вариант 2: | |
Очистите историю в браузере для домена my.1dmp.io. Инструкции для разных браузеров: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Русский перевод для https://github.com/plataformatec/devise/tree/v1.4.7 | |
# Другие переводы на http://github.com/plataformatec/devise/wiki/I18n | |
ru: | |
errors: | |
messages: | |
expired: "устарела. Пожалуйста, запросите новую" | |
not_found: "не найдена" | |
already_confirmed: "уже подтверждена. Пожалуйста, попробуйте войти в систему" | |
not_locked: "не заблокирована" |