HTTPOnly and Ember-Simple-Auth
@BadZombi wrote: I'm trying to figure out if there is a solution to an issue with cookies. A client used a one-size-fits-all WAS scanner to test an Ember app developed at my company. (but not by me....
View ArticleCan't set custom headers like X-Frame-Options
@BadZombi wrote: I want to be able to set some security headers on pages served by the ember app. alternately... is there any middleware like helmet ( https://www.npmjs.com/package/helmet ) I can just...
View ArticleEmber Simple Auth with external url authentication and callback with token
@ridermansb wrote: I use an external service for authentication (Stamplay) .. To authenticate with username and password, I have to make a post in ${config.host}/auth/v1/local/loginThe callback for...
View ArticleCallstack for Ember.observer
@Deepak_Negi_Sunny wrote: Dear member, Can we get call stack for Ember.observer, means can we know from which method the property changed which caused the Ember.observer react. Regards Dn Posts: 1...
View ArticleValidating target route path in a `{{link-to}}` using the application's...
@efx wrote: asking here out of curiosity.I am building a list of links dynamically based on a response of the server link so: {{#each links as |link|}} {{link-to 'a page' link}} {{/each}} Is there a...
View ArticleUpdate part of template by query params
@jobsboris27 wrote: Hi there!I have some filters and list of items. Now, I'm using ember-infinity and query params for changing inifinityModel (data depend on rest api). In my controller, I change...
View ArticleHow to load another model in a dynamic segment template
@mzein1292 wrote: Every ember documentation explains how to create a dynamic segment, and load the model data of that dynamic segment I even recently discovered that there is no need to define the...
View ArticleProperty/Action Naming Best Practices
@onsmith wrote: How do you name your computed properties and actions? For example, suppose you have a settings-manage-panel component that should only be shown if the user is an administrator. You...
View ArticleCannot find module for addon
@Craig_Setera wrote: I've been trying to get an addon we wanted to use to build correctly. It initially complained because of not being able to find broccoli-static-compiler. Reading around, it seems...
View ArticleHow to invalidate ember session on user inactivity
@stephennyu wrote: Hi there, Currently I am trying to develop an ember application utilizing the library Ember Simple Auth with JWT authentication method. Right now, I have managed to do the login...
View ArticleWhich back end framework for node.js fits well with the Ember way: Express,...
@alidcastano wrote: From what I found, there is three main players: Express, Hapi, and Sails. The Sane stack, using Ember and Sails, looked promising, but seemed to be discontinued. There doesn't seem...
View ArticleWhere to write actions?
@rjoxford wrote: I'll just admit: I'm not always entirely sure where to put actions. When I started with Ember, I put all actions in the controller. Then after reading a thread on here (*will find...
View ArticleEmber - abort the route and reload the route with same model
@yogesharora28 wrote: In my ember app, when the user clicks the Back button of browser,I need to stop the transition (whereever it might take me as per Ember history) and reload the same url with same...
View ArticleAt a complete loss with Addons
@tsteuwer wrote: I want to preface this with I've read so many tutorials. I have several issues: When I create an addon, I don't understand how you view the test dummy app. I've visited localhost:4200...
View ArticleGetting Ember to work with Sails.js not returning a valid JSON api document
@MattsLab wrote: Hello there! I'm new to the Ember and Sails scene and I'm running into the issue where Sails.js isn't returning a valid JSON api document. I figured that some of you might have ran...
View ArticleAccessing stores inside service?
@Prakash_Chokalingam wrote: First of all am new to ember ... I am creating an ember service like the below and wanna use ember data for some functionalities is it possible ? import Ember from 'ember';...
View ArticleEmber and typesafety
@kklisura wrote: Hi! Whenever I google ember typescript, all I get is some addons, but I can't see any projects using them - I can't seem to find anyone using Typescript on any real-world project in...
View ArticleJSONAPIAdapter making extra GET
@ikarius wrote: I'm bringing up a rails-api/AMS back-end and an ember front-end, connected via jsonapi adapters. I've set up support for "include" directives on a page that references a client model,...
View Article[Noob] Changed static model to this.store.findAll()
@valk wrote: Hi everyone, I'm noob and I created a working app that renders elements in the component. The elements was a simple array in the model() hook which were passed to the component. The...
View ArticleCannot Access All Object Data from Store
@Holmes89 wrote: I'm new to Ember so please forgive my ignorance. I am working on a search page where I have a route that accepts a search param and is passed to a query: model(param){ return...
View Article