This file contains 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
const options : CameraOptions = { | |
quality: 50, // picture quality | |
destinationType: this.camera.DestinationType.DATA_URL, | |
encodingType: this.camera.EncodingType.JPEG, | |
mediaType: this.camera.MediaType.PICTURE , | |
correctOrientation: true | |
} | |
this.camera.getPicture(options) .then((imageData) => { | |
let imagen = { | |
titulo: 'imagen deposito', |
This file contains 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
this.platform.resume.subscribe((res) => { | |
if(this.resumed == false){ | |
//your logic goes here | |
this.auth.getUserData().subscribe(()=>{ | |
console.log("User updated successfully"); | |
if (this.auth.userdata.afiliado.bloqueado) { | |
this.alertCtrl.create({ | |
title: "Su usuario está bloqueado", | |
subTitle: "Mientras su usuario está bloqueado, no puede recibir ni aceptar órdenes. <br><br> Si cree que es un error, contáctese con soporte." |
This file contains 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
{"lastUpload":"2020-08-10T18:20:49.173Z","extensionVersion":"v3.4.3"} |
This file contains 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
const multer = require('multer'); | |
const picStorage = multer.diskStorage({ | |
destination: function (req, file, cb) { | |
cb(null, 'public/images'); // carpeta donde guardara los ficheros | |
}, | |
filename: function (req, file, cb) { | |
cb(null, Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15) + file.originalname); | |
//El nombre como quedara el archivo guardaro (Aca genero un string aleatorio para en caso que no se repitan los filenames) | |
} |
This file contains 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
SET @Result = | |
( | |
Select DISTINCT p.ProfileID as 'ProfileID', | |
p.names as 'Names', | |
p.lat as 'Latitude', | |
p.lng as 'Longitude', | |
p.city as 'City', | |
p.state as 'State', | |
p.picUrl as 'picUrl', | |
p.rating as 'rate', |
This file contains 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
{ | |
"apt_unit": "9282727", | |
"city": "Managua", | |
"dob": "2003-02-25", | |
"email": "[email protected]", | |
"first_name": "Allan", | |
"gender": 0, | |
"goals": null, | |
"last_name": "Ramirez", | |
"password": "allan1097", |
This file contains 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
--Stored Procedure: [dbo].[sp_Search] | |
Select | |
pro.id as 'ProfileID', | |
pro.first_name as 'FirstName', | |
pro.last_name as 'LastName', | |
pro.email as 'Email', | |
pro.phone as 'Phone', | |
sp.name as 'Sport', | |
pro.score as 'Score', |
This file contains 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
const mailOptions = { | |
from: '[email protected]', // sender address | |
to: req.body.email, // list of receivers | |
subject: 'Thank you for purchasing Premium Account', // Subject line | |
html: `<p style="Margin-top: 0;Margin-bottom: 20px;text-align: center;"><span style="color:#000">We've charged <strong>$1.99</strong> to activate The Free Agent Premium account.<br /><br />- The Free Agent Team</span></p>` // plain text body | |
}; | |
transporter.sendMail(mailOptions, function(err, info) { | |
if (err) | |
console.log(err); |
This file contains 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
export const SERVER_URL = 'https://free-agent-api.e2api.com'; | |
// export const SERVER_URL = 'http://localhost:9000'; | |
export const states = [ | |
{ | |
"name": "Alabama", | |
"abbreviation": "AL" | |
}, | |
{ | |
"name": "Alaska", |
This file contains 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
var express = require("express"); | |
var router = express.Router(); | |
var accountModel = require("../models/account/account"); // gf | |
const multer = require('multer'); | |
// FileUpload Setup | |
const storage = multer.diskStorage({ | |
destination: function(req, file, cb) { | |
//Directorio donde guardar imagen |
NewerOlder